obscreen/docker-compose.yml
2024-08-01 10:41:12 +02:00

20 lines
484 B
YAML

services:
webapp:
container_name: obscreen
restart: unless-stopped
image: jierka/obscreen:latest
environment:
- DEMO=false
- DEBUG=false
- SECRET_KEY=ANY_SECRET_KEY_HERE
- PORT=5000
- PORT_HTTP_EXTERNAL_STORAGE=5001
volumes:
- /etc/localtime:/etc/localtime:ro
- ./data/db:/app/data/db
- ./data/uploads:/app/data/uploads
- ./var/run/storage:/app/var/run/storage
ports:
- 5000:5000
- 5001:5001