Files
dockerservertest/admin/compose.yml
T
2025-03-17 12:04:36 -05:00

32 lines
657 B
YAML
Executable File

services:
dockge:
container_name: dockge
image: louislam/dockge:1
environment:
- DOCKGE_STACKS_DIR=/home/akanealw/docker
networks:
- caddy
ports:
- 5001:5001
restart: unless-stopped
volumes:
- /var/run/docker.sock:/var/run/docker.sock
- ${DOCKER_CONFIGS}/dockge/data:/app/data
- /home/akanealw/docker:/home/akanealw/docker
dozzle:
container_name: dozzle
image: amir20/dozzle:latest
networks:
- caddy
ports:
- 8080:8080
restart: always
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
networks:
caddy:
name: caddy
external: true