fix: use separate port for integration tests to avoid conflicts

Integration tests now use port 8099 via docker-compose.test.yml with an
isolated project name, preventing conflicts with other services running
on port 8000.
This commit is contained in:
2025-11-30 18:16:28 -05:00
parent 6bc29e0841
commit 661be16316
2 changed files with 20 additions and 4 deletions

10
docker-compose.test.yml Normal file
View File

@@ -0,0 +1,10 @@
services:
ffmpeg-worker:
build: .
ports:
- "8099:8000"
volumes:
- ./data:/data
environment:
- DATA_PATH=/data
- FFMPEG_TIMEOUT=3600