fix: added CONTAINER_DOZZLE variable to support multiple environments and updated env template.

This commit is contained in:
Scott Idem
2026-03-12 00:32:08 -04:00
parent 7afbc6ffa3
commit dca75ab990
2 changed files with 6 additions and 1 deletions

View File

@@ -209,7 +209,7 @@ services:
# max-file: "3"
dozzle:
container_name: ae_dozzle_dev
container_name: ${CONTAINER_DOZZLE:-ae_dozzle_dev}
image: amir20/dozzle:latest
volumes:
- /var/run/docker.sock:/var/run/docker.sock

View File

@@ -32,6 +32,7 @@ CONTAINER_AE_APP=ae_app_default
CONTAINER_REDIS=ae_redis_default
CONTAINER_MARIADB=ae_mariadb_default
CONTAINER_PMA=ae_pma_default
CONTAINER_DOZZLE=ae_dozzle_default
# ------------------------------------------------------------------------------
# NETWORK & PROXY SETTINGS
@@ -40,6 +41,10 @@ CONTAINER_PMA=ae_pma_default
OSIT_WEB_HTTP_PORT=8080
OSIT_WEB_HTTPS_PORT=4443
# Gateway ports (External entry points into the container mesh)
AE_API_GATEWAY_PORT=5060
AE_APP_GATEWAY_PORT=3001
# Maximum allowed file upload size (Global for Nginx)
OSIT_WEB_MAX_BODY_SIZE=5120M