Spaces:
Running
Running
| 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 | |