1

Compare commits

..

4 Commits

6 changed files with 205 additions and 180 deletions

View File

@ -3,9 +3,12 @@
lib, lib,
pkgs, pkgs,
... ...
}: { }: let
virtualisation.oci-containers.containers.authelia = { autheliaVersion = "4.39.4";
image = "authelia/authelia:latest"; in {
virtualisation.oci-containers.containers = {
authelia = {
image = "authelia/authelia:${autheliaVersion}";
autoStart = true; autoStart = true;
login = { login = {
@ -37,4 +40,5 @@
"--net=behind-nginx" "--net=behind-nginx"
]; ];
}; };
};
} }

View File

@ -3,9 +3,12 @@
lib, lib,
pkgs, pkgs,
... ...
}: { }: let
virtualisation.oci-containers.containers.formula10 = { f10Version = "latest";
image = "gitea.vps.chriphost.de/christoph/formula10:latest"; in {
virtualisation.oci-containers.containers = {
formula10 = {
image = "gitea.vps.chriphost.de/christoph/formula10:${f10Version}";
autoStart = true; autoStart = true;
dependsOn = []; dependsOn = [];
@ -28,4 +31,5 @@
"--net=behind-nginx" "--net=behind-nginx"
]; ];
}; };
};
} }

View File

@ -3,9 +3,13 @@
lib, lib,
pkgs, pkgs,
... ...
}: { }: let
virtualisation.oci-containers.containers.formula11_pocketbase = { pocketbaseVersion = "0.25.0";
image = "gitea.vps.chriphost.de/christoph/pocketbase:0.25.0"; f11Version = "latest";
in {
virtualisation.oci-containers.containers = {
formula11_pocketbase = {
image = "gitea.vps.chriphost.de/christoph/pocketbase:${pocketbaseVersion}";
autoStart = true; autoStart = true;
dependsOn = [ dependsOn = [
@ -27,8 +31,8 @@
]; ];
}; };
virtualisation.oci-containers.containers.formula11 = { formula11 = {
image = "gitea.vps.chriphost.de/christoph/formula11:latest"; image = "gitea.vps.chriphost.de/christoph/formula11:${f11Version}";
autoStart = true; autoStart = true;
dependsOn = [ dependsOn = [
@ -60,4 +64,5 @@
"--net=behind-nginx" "--net=behind-nginx"
]; ];
}; };
};
} }

View File

@ -3,14 +3,17 @@
lib, lib,
pkgs, pkgs,
... ...
}: { }: let
heidiVersion = "latest";
in {
# If we need to pass secrets to containers we can't use plain env variables. # If we need to pass secrets to containers we can't use plain env variables.
sops.templates."heidi_secrets.env".content = '' sops.templates."heidi_secrets.env".content = ''
DISCORD_TOKEN=${config.sops.placeholder.heidi-discord-token} DISCORD_TOKEN=${config.sops.placeholder.heidi-discord-token}
''; '';
virtualisation.oci-containers.containers.heidi = { virtualisation.oci-containers.containers = {
image = "gitea.vps.chriphost.de/christoph/discord-heidi:latest"; heidi = {
image = "gitea.vps.chriphost.de/christoph/discord-heidi:${heidiVersion}";
autoStart = true; autoStart = true;
dependsOn = []; dependsOn = [];
@ -36,4 +39,5 @@
"--net=behind-nginx" "--net=behind-nginx"
]; ];
}; };
};
} }

View File

@ -3,9 +3,12 @@
lib, lib,
pkgs, pkgs,
... ...
}: { }: let
virtualisation.oci-containers.containers.nginx-proxy-manager = { nginxVersion = "2.12.6";
image = "jc21/nginx-proxy-manager:latest"; in {
virtualisation.oci-containers.containers = {
nginx-proxy-manager = {
image = "jc21/nginx-proxy-manager:${nginxVersion}";
autoStart = true; autoStart = true;
login = { login = {
@ -40,4 +43,5 @@
"--net=behind-nginx" "--net=behind-nginx"
]; ];
}; };
};
} }

View File

@ -3,9 +3,12 @@
lib, lib,
pkgs, pkgs,
... ...
}: { }: let
virtualisation.oci-containers.containers.whats-up-docker = { wudVersion = "8.1.1";
image = "getwud/wud:latest"; in {
virtualisation.oci-containers.containers = {
whats-up-docker = {
image = "getwud/wud:${wudVersion}";
autoStart = true; autoStart = true;
login = { login = {
@ -35,4 +38,5 @@
"--net=behind-nginx" "--net=behind-nginx"
]; ];
}; };
};
} }