From b2b9a66eba3f2a24a9de13a54c007aee5a91e8f3 Mon Sep 17 00:00:00 2001 From: dominikhoebert <42839893+dominikhoebert@users.noreply.github.com> Date: Tue, 30 Jul 2024 09:56:07 +0200 Subject: [PATCH] added dockge --- .gitignore | 2 ++ dockge/compose.yml | 23 +++++++++++++++++++++++ 2 files changed, 25 insertions(+) create mode 100644 dockge/compose.yml diff --git a/.gitignore b/.gitignore index 24ff638..8d1e20c 100644 --- a/.gitignore +++ b/.gitignore @@ -25,3 +25,5 @@ mariadb/dbgate-data/ authentik/certs/ authentik/custom-templates/ authentik/media/ +dockge/data/ +dockge/stacks/ diff --git a/dockge/compose.yml b/dockge/compose.yml new file mode 100644 index 0000000..dae5d8f --- /dev/null +++ b/dockge/compose.yml @@ -0,0 +1,23 @@ +# https://github.com/louislam/dockge + +# A fancy, easy-to-use and reactive self-hosted docker compose.yaml stack-oriented manager. + +name: dockge + +services: + dockge: + image: louislam/dockge:1 + container_name: dockge + ports: + - 5001:5001 + volumes: + - /var/run/docker.sock:/var/run/docker.sock + - ./data:/app/data + # Stacks Directory + # ⚠️ READ IT CAREFULLY. If you did it wrong, your data could end up writing into a WRONG PATH. + # ⚠️ 1. FULL path only. No relative path (MUST) + # ⚠️ 2. Left Stacks Path === Right Stacks Path (MUST) + - ./stacks:/opt/stacks + environment: + # Tell Dockge where to find the stacks + - DOCKGE_STACKS_DIR=/opt/stacks