feat: add initial docker-compose configuration for kitchenowl services

This commit is contained in:
nathan 2026-05-06 12:19:29 -04:00
parent 5b452893e3
commit a90b2ddf54

View File

@ -0,0 +1,27 @@
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=${ }
volumes:
- /mnt/appdata/kitchenowl/data:/data
networks:
- proxy-net
networks:
proxy-net:
external: true