2024-03-07 16:57:10 +01:00
|
|
|
{pkgs, ...}: {
|
|
|
|
project.name = "dashboard";
|
|
|
|
|
|
|
|
networks.dmz = {
|
|
|
|
name = "dmz";
|
|
|
|
external = true;
|
|
|
|
};
|
|
|
|
|
|
|
|
services = {
|
|
|
|
homarr.service = {
|
2024-03-31 22:05:29 +02:00
|
|
|
image = "ghcr.io/ajnart/homarr:0.15.2";
|
2024-03-07 16:57:10 +01:00
|
|
|
container_name = "homarr";
|
|
|
|
labels = {
|
|
|
|
"traefik.enable" = "true";
|
|
|
|
"traefik.http.routers.homarr.entrypoints" = "websecure";
|
|
|
|
"traefik.http.routers.homarr.rule" = "Host(`dashboard.ghoscht.com`)";
|
|
|
|
"traefik.http.routers.homarr.tls" = "true";
|
|
|
|
"traefik.http.routers.homarr.tls.certresolver" = "letsencrypt";
|
|
|
|
};
|
2024-05-03 16:31:26 +02:00
|
|
|
environment = {
|
|
|
|
AUTH_PROVIDER = "oidc";
|
|
|
|
AUTH_OIDC_URI = "https://auth.ghoscht.com/application/o/homarr";
|
|
|
|
AUTH_OIDC_CLIENT_NAME = "authentik";
|
|
|
|
NEXTAUTH_URL = "https://dashboard.ghoscht.com";
|
|
|
|
AUTH_OIDC_ADMIN_GROUP = "Homarr Admins";
|
|
|
|
AUTH_OIDC_OWNER_GROUP = "Homarr Admins";
|
|
|
|
};
|
|
|
|
env_file = [
|
|
|
|
"/home/ghoscht/.docker/dashboard/homarr.env"
|
|
|
|
];
|
2024-03-07 16:57:10 +01:00
|
|
|
volumes = [
|
2024-03-31 22:05:29 +02:00
|
|
|
"/storage/dataset/docker/dashboard/homarr_data:/data"
|
|
|
|
"/storage/dataset/docker/dashboard/homarr_config:/app/data/configs"
|
|
|
|
"/storage/dataset/docker/dashboard/homarr_icons:/app/public/imgs"
|
2024-03-07 16:57:10 +01:00
|
|
|
];
|
|
|
|
restart = "always";
|
|
|
|
networks = [
|
|
|
|
"dmz"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|