renamed to wireguard server

This commit is contained in:
2024-03-11 18:20:51 -05:00
parent 2802812769
commit a1b766e21c
25 changed files with 44 additions and 1512 deletions

View File

@@ -1,22 +0,0 @@
#GLOBAL SETTINGS
COMPOSE_HTTP_TIMEOUT=120
COMPOSE_IGNORE_ORPHANS=1
DOCKER_CONFIGS=.
DOCKERGID=999
DOCKERHOSTNAME=ProxyServer
DOCKERLOGGING_MAXFILE=10
DOCKERLOGGING_MAXSIZE=200k
PGID=1000
PUID=1000
UMASK=000
TZ=America/Chicago
#WATCHTOWER
WATCHTOWER_NOTIFICATIONS=email
WATCHTOWER_NOTIFICATION_EMAIL_FROM=notify.akanealw@gmail.com
WATCHTOWER_NOTIFICATION_EMAIL_TO=akanealw@gmail.com
WATCHTOWER_NOTIFICATION_EMAIL_SERVER=smtp.gmail.com
WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PORT=587
WATCHTOWER_NOTIFICATION_EMAIL_SERVER_USER=notify.akanealw@gmail.com
WATCHTOWER_NOTIFICATION_EMAIL_SERVER_PASSWORD=leawkqqpthbwacrf
WATCHTOWER_NOTIFICATION_EMAIL_DELAY=2

View File

@@ -1,48 +0,0 @@
version: '3'
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
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