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