diff options
| author | Adam Malczewski <[email protected]> | 2026-05-11 19:18:34 +0900 |
|---|---|---|
| committer | Adam Malczewski <[email protected]> | 2026-05-11 19:18:34 +0900 |
| commit | c23ee09f6d24832aa472298db91df3ce6e248a76 (patch) | |
| tree | 3576678394cf5eb053dc649abdf1dab559d69487 /docker-compose.yml | |
| download | youtube-transcriber-c23ee09f6d24832aa472298db91df3ce6e248a76.tar.gz youtube-transcriber-c23ee09f6d24832aa472298db91df3ce6e248a76.zip | |
Initial commit: YouTube transcriber API with queue-based worker
Diffstat (limited to 'docker-compose.yml')
| -rw-r--r-- | docker-compose.yml | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..72cd081 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,13 @@ +services: + app: + build: + context: . + dockerfile: Dockerfile.dev + container_name: youtube-transcriber-dev + ports: + - "41090:41090" + volumes: + - ./app:/app/app:ro + - ./pyproject.toml:/app/pyproject.toml:ro + - ./data:/app/data + restart: unless-stopped |
