Fix EPG network connection

This commit is contained in:
Jan Kremer 2026-02-21 09:25:30 +01:00
parent b5152fc2ea
commit 7ff71661bd
No known key found for this signature in database
2 changed files with 3 additions and 2 deletions

View file

@ -10,7 +10,7 @@
server = {
DOMAIN = "git.alpine-centauri.ts.net";
ROOT_URL = "https://${config.services.forgejo.settings.server.DOMAIN}";
# HTTP_PORT = 3000;
HTTP_PORT = 3010;
};
actions = {
ENABLED = true;

View file

@ -6,8 +6,9 @@
containers = {
epg = {
image = "ghcr.io/iptv-org/epg:master";
ports = [ "3001:3000" ];
ports = [ "3000:3000" ];
volumes = [ "/mnt/media/TV/custom.channels.xml:/epg/public/channels.xml" ];
extraOptions = [ "--network=host" ];
};
};
};