blob: 1f7b6376f148651d0f18ddcf0f6b80a4fae404a2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
{ pkgs, ... }:
# TODO: bring in cgit text configuration in `/srv` into nixos repository.
let
inherit (pkgs) dockerTools;
cgit = pkgs.cgit-pink;
cgitLocalPort = "3792";
cgitDir = "/srv/cgit";
gitDir = "/srv/git";
baseImage = dockerTools.pullImage {
imageName = "alpine";
imageDigest = "sha256:beefdbd8a1da6d2915566fde36db9db0b524eb737fc57cd1367effd16dc0d06d";
sha256 = "0fzqhqvvb0pzkwvjwyqjfv3rw2w8006xz4mhk0dk5clmyb08hqwc";
finalImageName = "alpine";
finalImageTag = "3.20.3";
};
# TODO: replace `buildLayeredImage` with `streamLayeredImage`
# in the upcoming 24.11 release.
cgitImage = dockerTools.buildLayeredImage {
name = "cgit";
tag = cgit.version;
fromImage = baseImage;
contents = with pkgs; [
lighttpd zstd
python311 python311Packages.pygments
] ++ [ cgit ];
# create cache folder, otherwise
# the cache is not used.
# NOTE: `mkdir` here can only create dirs relative
# to the current folder, but it will be linked
# to `/` later anyway.
extraCommands = ''
mkdir -p ./var/cache/cgit
'';
};
in
{
virtualisation.oci-containers.containers = {
cgit = {
# TODO: see above. replace with `imageStream`.
imageFile = cgitImage;
image = "cgit:${cgit.version}"; # has to match `imageFile`.
ports = [ "127.0.0.1:${cgitLocalPort}:80"];
volumes = [
"${cgitDir}/config/cgitrc:/etc/cgitrc"
"${cgitDir}/config/lighttpd.conf:/etc/lighttpd/cgit.conf"
"${cgitDir}/data:/data"
"${gitDir}:/var/www/cgit"
];
entrypoint = "${pkgs.lighttpd}/bin/lighttpd";
cmd = [
"-D" # run in foreground
"-f" "/etc/lighttpd/cgit.conf"
];
};
};
}
|