Change epg port

This commit is contained in:
Jan Kremer 2026-03-20 12:26:10 +01:00
parent 4b30d9995c
commit 7011f7fcdb
No known key found for this signature in database

View file

@ -6,14 +6,17 @@
"render" "render"
]; ];
## Grab EPG data daily ## Grab EPG data daily, runs on port 5000
virtualisation.oci-containers = { virtualisation.oci-containers = {
containers = { containers = {
epg = { epg = {
image = "ghcr.io/iptv-org/epg:master"; image = "ghcr.io/iptv-org/epg:master";
ports = [ "3000:3000" ]; ports = [ "5000:3000" ];
volumes = [ "/mnt/media/TV/custom.channels.xml:/epg/public/channels.xml" ]; volumes = [ "/mnt/media/TV/custom.channels.xml:/epg/public/channels.xml" ];
extraOptions = [ "--network=host" ]; extraOptions = [ "--dns=1.1.1.1" ];
environment = {
DAYS = "7";
};
}; };
}; };
}; };