Remove portainer in favor of Docker
Some checks failed
Auto Update Build / build (pull_request) Has been cancelled

This commit is contained in:
pazpi 2026-01-31 19:18:20 +01:00
parent edb41b3245
commit c11fea4a9d
10 changed files with 44 additions and 57 deletions

View file

@ -125,7 +125,7 @@ in
uptime-kuma.proxy = {
enable = true;
domain = p.domains.public;
host = p.hosts.portainer;
host = p.hosts.docker;
};
librenms.proxy = {
@ -172,22 +172,22 @@ in
}
{
subdomain = "ai";
host = "http://${p.hosts.portainer}:4080";
host = "http://${p.hosts.docker}:4080";
domain = p.domains.public;
}
{
subdomain = "keep";
host = "http://${p.hosts.portainer}:3000";
host = "http://${p.hosts.docker}:3000";
domain = p.domains.public;
}
{
subdomain = "maps";
host = "http://${p.hosts.portainer}:5000";
host = "http://${p.hosts.docker}:5000";
domain = p.domains.public;
}
{
subdomain = "dock";
host = "http://${p.hosts.portainer}:3333";
host = "http://${p.hosts.docker}:3333";
domain = p.domains.public;
}
];