summary refs log tree commit diff
path: root/nixos/modules/services
diff options
context:
space:
mode:
authorJörg Thalheim <joerg@higgsboson.tk>2016-12-20 23:24:17 +0100
committerJörg Thalheim <joerg@higgsboson.tk>2016-12-23 21:39:38 +0100
commitc23032a8b11d0585c1f1aece1d2b0abd82148e82 (patch)
tree306fbb208d2947e211ee8a9b1e5a66c72c20b4f4 /nixos/modules/services
parent61312a922c1884954fe9821be71d4d223d76702b (diff)
downloadnixlib-c23032a8b11d0585c1f1aece1d2b0abd82148e82.tar
nixlib-c23032a8b11d0585c1f1aece1d2b0abd82148e82.tar.gz
nixlib-c23032a8b11d0585c1f1aece1d2b0abd82148e82.tar.bz2
nixlib-c23032a8b11d0585c1f1aece1d2b0abd82148e82.tar.lz
nixlib-c23032a8b11d0585c1f1aece1d2b0abd82148e82.tar.xz
nixlib-c23032a8b11d0585c1f1aece1d2b0abd82148e82.tar.zst
nixlib-c23032a8b11d0585c1f1aece1d2b0abd82148e82.zip
docker: update service units from upstream
All the new options in detail:

Enable docker in multi-user.target make container created with restart=always
to start. We still want socket activation as it decouples dependencies between
the existing of /var/run/docker.sock and the docker daemon. This means that
services can rely on the availability of this socket. Fixes #11478 #21303

  wantedBy = ["multi-user.target"];

This allows us to remove the postStart hack, as docker reports on its own when
it is ready.

  Type=notify

The following will set unset some limits because overhead in kernel's ressource
accounting was observed. Note that these limit only apply to containerd.
Containers will have their own limit set.

  LimitNPROC=infinity
  LimitCORE=infinity
  TasksMax=infinity

Upgrades may require schema migrations. This can delay the startup of dockerd.

  TimeoutStartSec=0

Allows docker to create its own cgroup subhierarchy to apply ressource limits on
containers.

  Delegate=true

When dockerd is killed, container should be not affected to allow
`live restore` to work.

  KillMode=process
Diffstat (limited to 'nixos/modules/services')
-rw-r--r--nixos/modules/services/web-servers/lighttpd/inginious.nix3
1 files changed, 1 insertions, 2 deletions
diff --git a/nixos/modules/services/web-servers/lighttpd/inginious.nix b/nixos/modules/services/web-servers/lighttpd/inginious.nix
index 43deccb6aef8..669e81d0f14b 100644
--- a/nixos/modules/services/web-servers/lighttpd/inginious.nix
+++ b/nixos/modules/services/web-servers/lighttpd/inginious.nix
@@ -191,9 +191,8 @@ in
         virtualisation.docker = {
           enable = true;
           # We need docker to listen on port 2375.
-          extraOptions = "-H tcp://127.0.0.1:2375 -H unix:///var/run/docker.sock";
+          listenOptions = ["127.0.0.1:2375" "/var/run/docker.sock"];
           storageDriver = mkDefault "overlay";
-          socketActivation = false;
         };
 
         users.extraUsers."lighttpd".extraGroups = [ "docker" ];