53 lines
1.9 KiB
Nix
53 lines
1.9 KiB
Nix
{ config, lib, pkgs, serverCfg }:
|
|
let
|
|
builder =
|
|
{ image ? null, imageStream ? null, imageFile ? null
|
|
, secret ? null
|
|
, subdomain ? null, subpath?null, port ? 0
|
|
, extraEnv ? { }, extraLabels ? { }, extraOptions ? [ ]
|
|
, overrides ? { }
|
|
}:
|
|
let
|
|
routerName = if subpath != null
|
|
then "${subdomain}-${lib.strings.sanitizeDerivationName subpath}"
|
|
else subdomain;
|
|
base = {
|
|
image = if imageStream != null then "${imageStream.imageName}:${imageStream.imageTag}"
|
|
else image;
|
|
imageStream = imageStream;
|
|
imageFile = imageFile;
|
|
|
|
environmentFiles = if secret!=null then [ config.sops.secrets."${lib.toUpper secret}".path ] else [];
|
|
environment = {} // extraEnv;
|
|
|
|
labels = (if subdomain!=null then ({
|
|
"traefik.enable" = "true";
|
|
"traefik.http.routers.${routerName}.entrypoints" = "web-secure";
|
|
"traefik.http.routers.${routerName}.rule" = if subpath != null
|
|
then "Host(`${subdomain}.${serverCfg.hostDomain}`) && PathPrefix(`/${subpath}`)"
|
|
else "Host(`${subdomain}.${serverCfg.hostDomain}`)";
|
|
"traefik.http.routers.${routerName}.tls" = "true";
|
|
} // lib.optionalAttrs (port!=null) {
|
|
"traefik.http.services.${routerName}.loadbalancer.server.port" = toString port;
|
|
}) else {
|
|
"traefik.enable" = "false";
|
|
}) // extraLabels;
|
|
|
|
extraOptions = extraOptions ++ [
|
|
"--add-host=host.containers.internal:host-gateway"
|
|
];
|
|
};
|
|
in lib.recursiveUpdate base overrides;
|
|
in {
|
|
mkContainer = builder;
|
|
mkData = { name, dir, vars?{} }: pkgs.runCommand name vars ''
|
|
mkdir -p $out
|
|
cp -r ${./data + "/${dir}"}/. $out/
|
|
find $out -type f | while read file; do
|
|
${lib.concatStringsSep "\n" (lib.mapAttrsToList (n: v: ''
|
|
substituteInPlace "$file" --replace "@${n}@" "${toString v}"
|
|
'') vars)}
|
|
done
|
|
'';
|
|
host = "host.containers.internal";
|
|
} |