ucast/deploy/docker-compose.yml
ThetaDev 256442abda
All checks were successful
continuous-integration/drone/push Build is passing
finished docs, updated compose
2022-07-09 20:29:59 +02:00

21 lines
541 B
YAML

version: "3"
services:
ucast:
image: thetadev256/ucast
user: 1000:1000
restart: unless-stopped
ports:
- "8001:8001"
volumes:
- "../_run:/ucast"
environment:
UCAST_REDIS_URL: "redis://redis:6379"
UCAST_SECRET_KEY: "django-insecure-Es/+plApGxNBy8+ewB+74zMlmfV2H3whw6gu7i0ESwGrEWAUYRP3HM2EX0PLr3UJ"
UCAST_ALLOWED_HOSTS: ".localhost,127.0.0.1"
UCAST_N_WORKERS: 2
UCAST_TZ: "Europe/Berlin"
redis:
container_name: redis
image: redis:alpine
restart: unless-stopped