my-multiplayer-app / docker-compose.yml
Jaimodiji's picture
Upload folder using huggingface_hub
898f3cc verified
Raw
History Blame Contribute Delete
468 Bytes
version: '3.8'
services:
watchparty:
build: .
container_name: watchparty-bridge
ports:
- "7860:7860"
# Expose dynamic ports if you want to inspect VLC HTTP/Telnet directly:
# - "4200-4250:4200-4250"
environment:
- BASE_MOVIES_DIR=/movies
- VLC_PASSWORD=pass
volumes:
# Replace the left path with the absolute path to your movies folder on your host server
- ./movies:/movies
restart: unless-stopped