added admin docker containers
This commit is contained in:
13
admin/.env
Executable file
13
admin/.env
Executable file
@@ -0,0 +1,13 @@
|
|||||||
|
#GLOBAL SETTINGS
|
||||||
|
COMPOSE_HTTP_TIMEOUT=120
|
||||||
|
COMPOSE_IGNORE_ORPHANS=1
|
||||||
|
DOCKER_CONFIGS=.
|
||||||
|
DOCKERGID=999
|
||||||
|
DOCKERHOSTNAME=RemoteAccessServer
|
||||||
|
DOCKERLOGGING_MAXFILE=10
|
||||||
|
DOCKERLOGGING_MAXSIZE=200k
|
||||||
|
SERVERIP=192.168.1.31
|
||||||
|
PGID=1000
|
||||||
|
PUID=1000
|
||||||
|
UMASK=000
|
||||||
|
TZ=America/Chicago
|
||||||
1
admin/.gitignore
vendored
Executable file
1
admin/.gitignore
vendored
Executable file
@@ -0,0 +1 @@
|
|||||||
|
*.db
|
||||||
31
admin/compose.yml
Executable file
31
admin/compose.yml
Executable 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
|
||||||
Reference in New Issue
Block a user