updated files

This commit is contained in:
Mike McFetridge
2026-07-25 08:45:38 -04:00
parent b78378565a
commit dc6edd21da
37 changed files with 1424 additions and 1120 deletions
+20 -9
View File
@@ -1,11 +1,22 @@
# General Settings
TZ=America/New_York
PUID=1000
PGID=1000
# TZ for container timezone
TZ=America/New_York
SMTP_HOST=smtp.zoho.com
SMTP_FROM_NAME=miker@mcfetridge.us
SMTP_AUTH_STRATEGY=TLS
SMTP_FROM_EMAIL=miker@mcfetridge.us
SMTP_USER=miker@mcfetridge.us
SMTP_PASSWORD="!Sucyetat123"
SMTP_PORT=465
DATA_DIR=/opt/Docker-Deployments/Mealie
MEALIE_PORT=9200
MEMORY_LIMIT=1000M
# Mealie Application Settings
ALLOW_SIGNUP=false
MAX_WORKERS=1
WEB_CONCURRENCY=1
BASE_URL=https://mealie.mikemcfetridge.com
# SMTP Email Configuration
SMTP_HOST=mail.mmcfetridge.net
SMTP_PORT=465
SMTP_FROM_NAME=miker@mmcfetridge.net
SMTP_FROM_EMAIL=miker@mmcfetridge.net
SMTP_USER=miker@mmcfetridge.net
SMTP_PASSWORD=!Sucyetat123
SMTP_AUTH_STRATEGY=SSL
+26 -21
View File
@@ -1,37 +1,42 @@
services:
mealie:
image: ghcr.io/mealie-recipes/mealie:latest # Specifies the Mealie Docker i>
container_name: mealie # Names the container for easier>
restart: always
networks:
- proxy # Ensures the container restart>
# ports:
# - "9925:9000" # Maps port 9925 on the host to >
image: ghcr.io/mealie-recipes/mealie:latest
container_name: mealie
restart: unless-stopped
ports:
- "${MEALIE_PORT}:9000"
deploy:
resources:
limits:
memory: 1000M # Limits the container to use a >
memory: ${MEMORY_LIMIT}
volumes:
- /home/miker/docker/mealie/data:/app/data/ # Persists data in>
- ./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=${PUID} # Sets the user ID for the conta>
- PGID=${PGID} # Sets the group ID for the cont>
- TZ=${TZ} # 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=${SMTP_HOST}
- SMTP_PORT=${SMTP_PORT}
- SMTP_FROM_NAME=${SMTP_FROM_NAME}
- SMTP_AUTH_STRATEGY=${SMTP_AUTH_STRATEGY}
- SMTP_FROM_EMAIL=${SMTP_FROM_EMAI}
- SMTP_FROM_EMAIL=${SMTP_FROM_EMAIL}
- SMTP_USER=${SMTP_USER}
- SMTP_PASSWORD=${SMTP_PASSWORD}
env_file:
- .env
networks:
- external
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:9000"]
interval: 10s
retries: 3
timeout: 10s
start_period: 30s
networks:
proxy:
external:
external: true