21 lines
No EOL
474 B
Django/Jinja
21 lines
No EOL
474 B
Django/Jinja
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: |