21 lines
474 B
Text
21 lines
474 B
Text
|
version: "3"
|
||
|
services:
|
||
|
front:
|
||
|
image: tombursch/kitchenowl-web:latest
|
||
|
restart: unless-stopped
|
||
|
# environment:
|
||
|
# - BACK_URL=back:5000 # Change this if you rename the containers
|
||
|
ports:
|
||
|
- "8000:80"
|
||
|
depends_on:
|
||
|
- back
|
||
|
back:
|
||
|
image: tombursch/kitchenowl-backend:latest
|
||
|
restart: unless-stopped
|
||
|
environment:
|
||
|
- JWT_SECRET_KEY={{ kitchenowl_jwt_secret }}
|
||
|
volumes:
|
||
|
- kitchenowl_data:/data
|
||
|
|
||
|
volumes:
|
||
|
kitchenowl_data:
|