Nathan f029a4a84b
Some checks failed
Auto-Deploy Changed Stacks / deploy (push) Failing after 18s
fix: update kitchenowl front service configuration and restore environment variables
2026-06-18 22:13:24 -04:00

35 lines
952 B
YAML

services:
front:
image: tombursch/kitchenowl-web:latest
container_name: kitchenowl-front
restart: unless-stopped
environment:
- BACK_URL=back:5000
depends_on:
- back
networks:
- proxy-net
- kitchenowl-internal
labels:
- "traefik.enable=true"
- "traefik.http.routers.kitchenowl.rule=Host(`kitchenowl.castaldifamily.com`)"
- "traefik.http.routers.kitchenowl.entrypoints=websecure"
- "traefik.http.routers.kitchenowl.tls.certresolver=cloudflare"
- "traefik.http.services.kitchenowl.loadbalancer.server.port=80"
back:
image: tombursch/kitchenowl-backend:latest
container_name: kitchenowl-back
restart: unless-stopped
environment:
- JWT_SECRET_KEY=${JWT_SECRET_KEY}
volumes:
- /mnt/appdata/kitchenowl/data:/data
networks:
- kitchenowl-internal
networks:
proxy-net:
external: true
kitchenowl-internal:
internal: true