iptv-xml-cleaner/docker-compose.yml
Nicolas feb262e0ff Add composer yaml
Attempting to set up with composer instead of building cleaner off of lighttpd image which is built off of debian. Also actually added cron job to cleaner Dockerfile.
2025-06-11 16:47:01 -04:00

17 lines
328 B
YAML

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