From 645d2fbbefe9c782283cab7b5e23c08bb9f11281 Mon Sep 17 00:00:00 2001 From: Gurulandia Date: Sat, 1 Feb 2025 15:41:51 +0200 Subject: [PATCH] Add template file --- docker/.env.template | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 docker/.env.template diff --git a/docker/.env.template b/docker/.env.template new file mode 100644 index 0000000..d2e35c0 --- /dev/null +++ b/docker/.env.template @@ -0,0 +1,27 @@ +COMPOSE_PROJECT_NAME=proxy + +##### SYSTEM +PUID=1000 +PGID=1000 +TZ=Europe/HelsinkI + +#USERDIR=/home/gurulandia +DOCKERDIR=/gurulandia/data +SECRETSDIR=/gurulandia/docker-shared/secrets + +##### ProxyName +PROXYNAME=proxy + +##### Traefik Container +TRAEFIK_CONTAINER_NAME=traefik +TRAEFIK_IMAGE=traefik +TRAEFIK_VERSION=latest +TRAEFIK_RESTART_POLICY=unless-stopped + +##### socket-proxy Container +SOCKET_PROXY_CONTAINER_NAME=socket-proxy +SOCKET_PROXY_IMAGE=ghcr.io/tecnativa/docker-socket-proxy +SOCKET_PROXY_VERSION=latest +SOCKET_PROXY_RESTART_POLICY=always + +DOCKER_ENDPOINT=tcp://${SOCKET_PROXY_CONTAINER_NAME}:2375