Files
docker_compose/kitchenowl/compose.yml

15 lines
433 B
YAML
Raw Normal View History

2026-01-27 11:14:23 +01:00
services:
KitchenOwl:
image: tombursch/kitchenowl:latest
restart: unless-stopped
container_name: KitchenOwl
ports:
- ${PORT:-default 8080}:8080
environment:
# Required to set. Either manually or via the setup script.
- JWT_SECRET_KEY=${JWT_SECRET_KEY:?Required Value}
- STORAGE_PATH=${STORAGE_PATH}
2026-01-30 08:31:39 +01:00
- OPEN_REGISTRATION=${OPEN_REGISTRATION:-false}
2026-01-27 11:14:23 +01:00
volumes:
- ./data:/data