Signed-off-by: Menno van Leeuwen <menno@vleeuwen.me>
This commit is contained in:
2025-02-07 13:09:16 +01:00
parent c4685066f8
commit e9e3bcd53f
18 changed files with 158 additions and 90 deletions

22
dockge/compose.yaml Normal file
View File

@@ -0,0 +1,22 @@
services:
dockge:
image: louislam/dockge:1
restart: unless-stopped
ports:
# Host Port : Container Port
- 5001:5001
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ./data:/app/data
# If you want to use private registries, you need to share the auth file with Dockge:
# - /root/.docker/:/root/.docker
# 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)
- /mnt/services:/mnt/services
environment:
# Tell Dockge where is your stacks directory
- DOCKGE_STACKS_DIR=/mnt/services