22 lines
513 B
YAML
Executable File
22 lines
513 B
YAML
Executable File
services:
|
|
dockge:
|
|
image: louislam/dockge:latest
|
|
restart: unless-stopped
|
|
container_name: dockge-agent
|
|
deploy:
|
|
resources:
|
|
limits:
|
|
memory: 512M
|
|
ports:
|
|
# Host Port : Container Port
|
|
- 9111:5001
|
|
volumes:
|
|
- /var/run/docker.sock:/var/run/docker.sock
|
|
- /opt/dockge/data:/app/data
|
|
- /opt/:/opt/
|
|
environment:
|
|
# Tell Dockge where is your stacks directory
|
|
- DOCKGE_STACKS_DIR=/opt/
|
|
- DOCKGE_ENABLE_CONSOLE=true
|
|
networks: {}
|