From a90b2ddf54672ff804c4e6eddf4271e4510e36cd Mon Sep 17 00:00:00 2001 From: nathan Date: Wed, 6 May 2026 12:19:29 -0400 Subject: [PATCH] feat: add initial docker-compose configuration for kitchenowl services --- nodes/heimdall/kitchenowl/compose.yaml | 27 ++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 nodes/heimdall/kitchenowl/compose.yaml diff --git a/nodes/heimdall/kitchenowl/compose.yaml b/nodes/heimdall/kitchenowl/compose.yaml new file mode 100644 index 0000000..6a19e0f --- /dev/null +++ b/nodes/heimdall/kitchenowl/compose.yaml @@ -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 \ No newline at end of file