Move gitlab configuration to a networked-docker-container

This commit is contained in:
Tristan Daniël Maat 2020-02-08 21:29:30 +09:00
parent 7266dd3bfa
commit 5b5f922354
Signed by: tlater
GPG key ID: 49670FD774E43268
2 changed files with 21 additions and 23 deletions
etc/nixos/services

View file

@ -1,21 +1,25 @@
{ ... }:
{
image = "gitlab/gitlab-ce:latest";
ports = [
"3022:22"
];
volumes = [
"gitlab-data:/var/opt/gitlab:Z"
"gitlab-logs:/var/log/gitlab:Z"
"gitlab-config:/etc/gitlab:Z"
];
environment = {
VIRTUAL_HOST = "gitlab.tlater.net";
LETSENCRYPT_HOST = "gitlab.tlater.net";
GITLAB_OMNIBUS_CONFIG = builtins.replaceStrings [ "\n" ] [ "" ] (builtins.readFile ./configs/gitlab.rb);
networked-docker-containers = {
gitlab = {
image = "gitlab/gitlab-ce:latest";
ports = [
"3022:22"
];
volumes = [
"gitlab-data:/var/opt/gitlab:Z"
"gitlab-logs:/var/log/gitlab:Z"
"gitlab-config:/etc/gitlab:Z"
];
environment = {
VIRTUAL_HOST = "gitlab.tlater.net";
LETSENCRYPT_HOST = "gitlab.tlater.net";
GITLAB_OMNIBUS_CONFIG = builtins.replaceStrings [ "\n" ] [ "" ] (builtins.readFile ./configs/gitlab.rb);
};
networks = [
"webproxy"
];
};
};
extraDockerOptions = [
"--network=webproxy"
];
}