Files
ollama-compose-files/dockge/docker-compose.yaml
T
Sven Hanold cb19e92f47 Initial
2025-12-22 15:10:35 +00:00

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: {}