rearranged

This commit is contained in:
2024-03-29 23:51:38 -05:00
parent 52a228d2a5
commit 4053bdef4c
5 changed files with 2 additions and 0 deletions

13
admin/.env Executable file
View File

@@ -0,0 +1,13 @@
#GLOBAL SETTINGS
COMPOSE_HTTP_TIMEOUT=120
COMPOSE_IGNORE_ORPHANS=1
DOCKER_CONFIGS=.
DOCKERGID=999
DOCKERHOSTNAME=Debian12Dev
DOCKERLOGGING_MAXFILE=10
DOCKERLOGGING_MAXSIZE=200k
SERVERIP=192.168.1.35
PGID=1000
PUID=1000
UMASK=000
TZ=America/Chicago

0
admin/.gitignore vendored Executable file
View File

46
admin/compose.yml Executable file
View File

@@ -0,0 +1,46 @@
services:
dockge:
container_name: dockge
image: louislam/dockge:1
environment:
- DOCKGE_STACKS_DIR=/home/akanealw/debian12dev/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/debian12dev/docker:/home/akanealw/debian12dev/docker
dozzle:
container_name: dozzle
image: amir20/dozzle:latest
environment:
- DOZZLE_ADDR=:1234
networks:
- reverse-proxy
ports:
- 9999:1234
restart: always
volumes:
- /var/run/docker.sock:/var/run/docker.sock:ro
portainer:
container_name: portainer
image: portainer/portainer-ce:latest
networks:
- reverse-proxy
ports:
- 9000:9000/tcp
restart: always
volumes:
- ${DOCKER_CONFIGS}/portainer/data:/data
- /var/run/docker.sock:/var/run/docker.sock
- /etc/localtime:/etc/localtime:ro
networks:
reverse-proxy:
name: reverse-proxy
external: true