refactor: clean up mealie service configuration by removing commented ports and ensuring environment variables are set correctly
Some checks failed
Auto-Deploy Changed Stacks / deploy (push) Failing after 2s

This commit is contained in:
Nathan 2026-07-27 12:14:28 -04:00
parent 8619d993bf
commit 4640cc505f

View File

@ -3,8 +3,6 @@ services:
image: ghcr.io/mealie-recipes/mealie:v3.21.0 # image: ghcr.io/mealie-recipes/mealie:v3.21.0 #
container_name: mealie container_name: mealie
restart: unless-stopped restart: unless-stopped
# ports:
# - "9925:9000" #
deploy: deploy:
resources: resources:
limits: limits:
@ -12,12 +10,21 @@ services:
volumes: volumes:
- /mnt/appdata/mealie/data:/app/data/ - /mnt/appdata/mealie/data:/app/data/
environment: environment:
# Set Backend ENV Variables Here ALLOW_SIGNUP: ${ALLOW_SIGNUP}
ALLOW_SIGNUP: "false" PUID: ${PUID}
PUID: 1000 PGID: ${PGID}
PGID: 1000 TZ: ${TZ}
TZ: America/New_York BASE_URL: ${BASE_URL}
BASE_URL: https://mealie.castaldifamily.com SMTP_HOST: ${SMTP_HOST}
SMTP_PORT: ${SMTP_PORT}
SMTP_FROM_NAME: ${SMTP_FROM_NAME}
SMTP_AUTH_STRATEGY: ${SMTP_AUTH_STRATEGY}
SMTP_FROM_EMAIL: ${SMTP_FROM_EMAIL}
SMTP_USER: ${SMTP_USER}
SMTP_PASSWORD: ${SMTP_PASSWORD}
OIDC_AUTO_REDIRECT: ${OIDC_AUTO_REDIRECT}
OIDC_REMEMBER_ME: ${OIDC_REMEMBER_ME}
ALLOW_PASSWORD_LOGIN: ${ALLOW_PASSWORD_LOGIN}
networks: networks:
- proxy-net - proxy-net
labels: labels: