22 lines
478 B
Nix
22 lines
478 B
Nix
|
{ ... }:
|
||
|
|
||
|
{
|
||
|
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);
|
||
|
};
|
||
|
extraDockerOptions = [
|
||
|
"--network=webproxy"
|
||
|
];
|
||
|
}
|