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 #
container_name: mealie
restart: unless-stopped
# ports:
# - "9925:9000" #
deploy:
resources:
limits:
@ -12,12 +10,21 @@ services:
volumes:
- /mnt/appdata/mealie/data:/app/data/
environment:
# Set Backend ENV Variables Here
ALLOW_SIGNUP: "false"
PUID: 1000
PGID: 1000
TZ: America/New_York
BASE_URL: https://mealie.castaldifamily.com
ALLOW_SIGNUP: ${ALLOW_SIGNUP}
PUID: ${PUID}
PGID: ${PGID}
TZ: ${TZ}
BASE_URL: ${BASE_URL}
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:
- proxy-net
labels: