homelab/ansible/roles/kitchenowl/templates/docker-compose.yml.j2

21 lines
474 B
Text
Raw Normal View History

2024-10-20 19:53:33 +00:00
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: