2023-11-11 15:18:37 +01:00
|
|
|
version: "3.8"
|
|
|
|
services:
|
|
|
|
dockge:
|
|
|
|
image: louislam/dockge:1
|
|
|
|
restart: unless-stopped
|
|
|
|
ports:
|
|
|
|
# Host Port : Container Port
|
|
|
|
- 5001:5001
|
|
|
|
volumes:
|
2023-11-11 16:43:53 +01:00
|
|
|
# If you want to use private registries, you need to share the auth file with Dockge:
|
|
|
|
# - /root/.docker/:/root/.docker
|
|
|
|
|
2023-11-11 15:18:37 +01:00
|
|
|
# Docker Socket
|
|
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
|
|
# Dockge Config
|
|
|
|
- ./data:/app/data
|
|
|
|
# Your stacks directory in the host (The paths inside container must be the same as the host)
|
|
|
|
- /opt/stacks:/opt/stacks
|
|
|
|
environment:
|
|
|
|
# Tell Dockge where is your stacks directory
|
|
|
|
- DOCKGE_STACKS_DIR=/opt/stacks
|