Files
PlexPlaylistSync/docker-compose.yml
T
2025-11-24 07:41:10 +09:00

15 lines
297 B
YAML

version: "3.9"
services:
plex-playlist-sync:
build: .
command: uvicorn app.main:app --host 0.0.0.0 --port 8080 --reload
ports:
- "8080:8080"
volumes:
- ./:/app
environment:
- PYTHONUNBUFFERED=1
- PYTHONDONTWRITEBYTECODE=1
restart: unless-stopped