added admin docker containers

This commit is contained in:
2025-10-09 23:55:53 +00:00
parent 7af7977dad
commit dd229c0802
4 changed files with 45 additions and 0 deletions

31
admin/compose.yml Executable file
View File

@@ -0,0 +1,31 @@
services:
dockge:
container_name: dockge
image: louislam/dockge:1
environment:
- DOCKGE_STACKS_DIR=/home/akanealw/docker
networks:
- reverse-proxy
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:
- reverse-proxy
ports:
- 8080:8080
restart: always
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
networks:
reverse-proxy:
name: reverse-proxy
external: true