iptv-xml-cleaner/docker-compose.yml
2025-06-12 09:58:35 -04:00

17 lines
338 B
YAML

services:
parser:
build: ./
volumes:
- shared-data:/data
command: ["./parse-xml.sh"] # Writes output to /data/clean_CANADA_USA.xml
web:
image: ./targo_lighttpd
ports:
- "8080:80"
volumes:
- shared-data:/var/www/html # Lighttpd serves /var/www/html
volumes:
shared-data: