feat: add docker-compose configuration for mealie service
All checks were successful
Auto-Deploy Changed Stacks / deploy (push) Successful in 15s
All checks were successful
Auto-Deploy Changed Stacks / deploy (push) Successful in 15s
This commit is contained in:
parent
e46a634db4
commit
8619d993bf
35
nodes/heimdall/mealie/compose.yaml
Normal file
35
nodes/heimdall/mealie/compose.yaml
Normal file
@ -0,0 +1,35 @@
|
||||
services:
|
||||
mealie:
|
||||
image: ghcr.io/mealie-recipes/mealie:v3.21.0 #
|
||||
container_name: mealie
|
||||
restart: unless-stopped
|
||||
# ports:
|
||||
# - "9925:9000" #
|
||||
deploy:
|
||||
resources:
|
||||
limits:
|
||||
memory: 1000M #
|
||||
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
|
||||
networks:
|
||||
- proxy-net
|
||||
labels:
|
||||
- "traefik.enable=true"
|
||||
- "traefik.http.routers.mealie.entrypoints=websecure"
|
||||
- "traefik.http.routers.mealie.rule=Host(`mealie.castaldifamily.com`)"
|
||||
- "traefik.http.routers.mealie.tls=true"
|
||||
- "traefik.http.routers.mealie.tls.certresolver=cloudflare"
|
||||
- "traefik.http.routers.mealie.service=mealie"
|
||||
- "traefik.http.services.mealie.loadbalancer.server.port=9000"
|
||||
|
||||
networks:
|
||||
proxy-net:
|
||||
name: proxy-net
|
||||
external: true
|
||||
Loading…
x
Reference in New Issue
Block a user