Add docker-compose.yml to define m3u-builder service configuration
All checks were successful
CI/CD Pipeline / test-and-lint (push) Successful in 36s
CI/CD Pipeline / publish-container (push) Has been skipped

This commit is contained in:
unai 2026-02-01 19:20:05 +00:00
parent 0ec25115e2
commit 2cec6b73f6

11
docker-compose.yml Normal file
View File

@ -0,0 +1,11 @@
services:
m3u-builder:
build: .
env_file:
- .env
ports:
- "${PORT:-8080}:${PORT:-8080}"
volumes:
# Opcional: persistir la playlist generada
- ./public:/app/public
restart: unless-stopped