27 lines
616 B
YAML

services:
front:
image: tombursch/kitchenowl-web:latest
container_name: kitchenowl-front
restart: unless-stopped
networks:
- proxy-net
# environment:
# - BACK_URL=back:5000 # Change this if you rename the containers
ports:
- "10580:80"
depends_on:
- back
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:
- proxy-net
networks:
proxy-net:
external: true