updated several configs
This commit is contained in:
+23
-24
@@ -1,36 +1,35 @@
|
||||
services:
|
||||
mealie:
|
||||
image: ghcr.io/mealie-recipes/mealie:latest # Specifies the Mealie Docker i>
|
||||
container_name: mealie # Names the container for easier>
|
||||
image: ghcr.io/mealie-recipes/mealie:latest
|
||||
container_name: mealie
|
||||
restart: unless-stopped
|
||||
ports:
|
||||
- "9200:9000" # Maps port 9925 on the host to >
|
||||
- "${MEALIE_PORT}:9000"
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
memory: 1000M # Limits the container to use a >
|
||||
memory: ${MEMORY_LIMIT}
|
||||
volumes:
|
||||
- /opt/Docker-Deployments/Mealie/data:/app/data/ # Persists data in>
|
||||
- /opt/Docker-Deployments/Mealie/config/addons_config/mealie/config.yaml:/config/config.yanl
|
||||
- ${DATA_DIR}/data:/app/data/
|
||||
- ${DATA_DIR}/config/addons_config/mealie/config.yaml:/config/config.yaml
|
||||
environment:
|
||||
- ALLOW_SIGNUP=false # Allows new user signups on the>
|
||||
- PUID=1000 # Sets the user ID for the conta>
|
||||
- PGID=1000 # Sets the group ID for the cont>
|
||||
- TZ=America/New_York # Sets the timezone for the cont>
|
||||
- MAX_WORKERS=1 # Limits the number of workers t>
|
||||
- WEB_CONCURRENCY=1 # Sets the concurrency level for>
|
||||
- BASE_URL=mealie.mikemcfetridge.com # The base URL where Mealie is a>
|
||||
- ALLOW_SIGNUP=${ALLOW_SIGNUP}
|
||||
- PUID=${PUID}
|
||||
- PGID=${PGID}
|
||||
- TZ=${TZ}
|
||||
- MAX_WORKERS=${MAX_WORKERS}
|
||||
- WEB_CONCURRENCY=${WEB_CONCURRENCY}
|
||||
- BASE_URL=${BASE_URL}
|
||||
# Email Settings
|
||||
- SMTP_HOST=mail.mmcfetridge.net
|
||||
- SMTP_PORT=465
|
||||
- SMTP_FROM_NAME=miker@mmcfetridge.net
|
||||
- SMTP_AUTH_STRATEGY=TLS
|
||||
- SMTP_FROM_EMAIL=miker@mmcfetridge.net
|
||||
- SMTP_USER=miker@mmcfetridge.net
|
||||
- SMTP_PASSWORD="!Sucyetat123"
|
||||
- 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}
|
||||
networks:
|
||||
- external
|
||||
restart: unless-stopped
|
||||
|
||||
- external
|
||||
healthcheck:
|
||||
test: ["CMD", "curl", "-f", "http://localhost:9000"]
|
||||
interval: 10s
|
||||
@@ -40,4 +39,4 @@ services:
|
||||
|
||||
networks:
|
||||
external:
|
||||
external: true # Tells Compose not to create this network
|
||||
external: true
|
||||
|
||||
Reference in New Issue
Block a user