From 787b3d57e0e707a8d2aac9e57941b9f205a10ab3 Mon Sep 17 00:00:00 2001 From: iaiaian1 Date: Fri, 14 Nov 2025 11:25:40 +0800 Subject: [PATCH] Add missing .env values ROUTER, TRAEFIK_DOMAIN and HASHED_PASSWORD are missing values needed for multiple overrides PULL_POLICY=missing is needed if you want to use local generated image Signed-off-by: iaiaian1 --- example.env | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/example.env b/example.env index 74174834..3b6d9f18 100644 --- a/example.env +++ b/example.env @@ -53,3 +53,16 @@ CLIENT_MAX_BODY_SIZE= # More https://doc.traefik.io/traefik/routing/routers/#rule # About acme https://doc.traefik.io/traefik/https/acme/#domain-definition SITES=`erp.example.com` + +# Set proper router and traefik_domain values for traefik to work locally +ROUTER=backend +TRAEFIK_DOMAIN=localhost +HASHED_PASSWORD=$apr1$K.4gp7RT$tj9R2jHh0D4Gb5o5fIAzm/ + +# Pull policy - Comment to always pull image from the docker hub +# Enable if you want to use your local image +PULL_POLICY=missing + +# Custom image - If you want to use local generated image +# CUSTOM_IMAGE=testing/layered +# CUSTOM_TAG=15 \ No newline at end of file