36 lines
631 B
Nix
36 lines
631 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: let
|
|
f10Version = "latest";
|
|
in {
|
|
virtualisation.oci-containers.containers = {
|
|
formula10 = {
|
|
image = "gitea.vps.chriphost.de/christoph/formula10:${f10Version}";
|
|
autoStart = true;
|
|
|
|
dependsOn = [];
|
|
|
|
ports = [
|
|
"55555:5000"
|
|
];
|
|
|
|
volumes = [
|
|
"formula10_data:/app/instance"
|
|
"formula10_cache:/cache"
|
|
];
|
|
|
|
environment = {
|
|
TZ = "Europe/Berlin";
|
|
};
|
|
|
|
extraOptions = [
|
|
"--init" # Make an init process take up PID 1, to make python receive the SIGTERM
|
|
"--net=behind-nginx"
|
|
];
|
|
};
|
|
};
|
|
}
|