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

@ -12,7 +12,11 @@ in
oidc = {
clientId = "FiIJTqBIlMKmeSBjznUFgXIJadt71av8dfICvZvf";
endpoint = "https://auth.pasetto.me/application/o/dashy/";
scope = ["openid" "profile" "email"];
scope = [
"openid"
"profile"
"email"
];
};
};
webSearch = {
@ -325,10 +329,10 @@ in
};
items = [
{
title = "Portainer";
title = "Docker";
description = "Container Management";
url = "https://portainer.${p.domains.public}";
icon = "hl-portainer";
url = "https://${p.hosts.docker}.${p.domains.public}";
icon = "hl-docker";
}
{
title = "Primary DNS";
@ -354,7 +358,7 @@ in
url = "https://node.${p.domains.public}:8006";
icon = "hl-proxmox";
}
{
{
title = "Krzo";
description = "Proxmox Node";
url = "https://krzo.${p.domains.public}:8006";

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;
}
];