feat: add initial docker-compose configuration for kitchenowl services
This commit is contained in:
parent
5b452893e3
commit
a90b2ddf54
27
nodes/heimdall/kitchenowl/compose.yaml
Normal file
27
nodes/heimdall/kitchenowl/compose.yaml
Normal 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
|
||||||
Loading…
x
Reference in New Issue
Block a user