obscreen/docker-compose.dev.yml
2024-04-29 01:07:19 +02:00

18 lines
360 B
YAML

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