obscreen/docker-compose.dev.yml
2024-05-09 22:17:09 +02:00

18 lines
467 B
YAML

services:
webapp:
build:
context: .
dockerfile: Dockerfile
container_name: obscreen
restart: unless-stopped
image: obscreen:latest
environment:
- DEBUG=${DEBUG-false}
- PORT=${PORT-5000}
- AUTOCONFIGURE_LX_FILE=/app/var/run/lxfile
- SECRET_KEY=${SECRET_KEY-ANY_SECRET_KEY_HERE}
volumes:
- .:/app
- ${AUTOCONFIGURE_LX_FILE-./var/run/dummy}:/app/var/run/lxfile
ports:
- ${PORT}:${PORT}