Tristan Daniël Maat
517f4f0080
Podman pods make this obsolete; though we need to explicitly set slirp4netns, otherwise podman will not create private network namespaces for the pods.
51 lines
1.2 KiB
Nix
51 lines
1.2 KiB
Nix
{ config, ... }:
|
|
|
|
{
|
|
users = {
|
|
extraUsers.gitea = {
|
|
uid = config.ids.uids.git;
|
|
isSystemUser = true;
|
|
description = "Gitea Service";
|
|
group = config.users.extraGroups.gitea.name;
|
|
};
|
|
extraGroups.gitea = { gid = config.ids.gids.git; };
|
|
};
|
|
|
|
virtualisation.pods.gitea = {
|
|
hostname = "gitea.tlater.net";
|
|
publish = [ "3000:3000" "2221:2221" ];
|
|
network = "slirp4netns";
|
|
|
|
containers = {
|
|
gitea = {
|
|
image = "gitea/gitea:latest";
|
|
volumes = [ "gitea:/data:Z" "/etc/localtime:/etc/localtime:ro" ];
|
|
dependsOn = [ "postgres" ];
|
|
|
|
environment = {
|
|
DB_TYPE = "postgres";
|
|
DB_HOST = "gitea-postgres:5432";
|
|
DB_NAME = "gitea";
|
|
DB_USER = "gitea";
|
|
|
|
USER_UID = toString config.users.extraUsers.gitea.uid;
|
|
USER_GID = toString config.users.extraGroups.gitea.gid;
|
|
|
|
RUN_MODE = "prod";
|
|
DOMAIN = "gitea.tlater.net";
|
|
SSH_PORT = "2221";
|
|
};
|
|
};
|
|
|
|
postgres = {
|
|
image = "postgres:alpine";
|
|
environment = {
|
|
POSTGRES_DB = "gitea";
|
|
POSTGRES_USER = "gitea";
|
|
};
|
|
volumes = [ "gitea-db-data:/var/lib/postgresql/data" ];
|
|
};
|
|
};
|
|
};
|
|
}
|