···
<command>docker</command> command line tool.
+
type = types.listOf types.str;
+
default = ["/var/run/docker.sock"];
+
A list of unix and tcp docker should listen to. The format follows
+
ListenStream as described in systemd.socket(5).
+
When enabled dockerd is started on boot. This is required for
+
container, which are created with the
+
<literal>--restart=always</literal> flag, to work. If this option is
+
disabled, docker might be started on demand by socket activation.
+
Allow dockerd to be restarted without affecting running container.
+
This option is incompatible with docker swarm.
type = types.nullOr (types.enum ["aufs" "btrfs" "devicemapper" "overlay" "overlay2" "zfs"]);
···
<command>docker</command> daemon.
···
config = mkIf cfg.enable (mkMerge [
{ environment.systemPackages = [ pkgs.docker ];
users.extraGroups.docker.gid = config.ids.gids.docker;
+
# this unit follows the one provided by upstream see: https://github.com/docker/docker/blob/master/contrib/init/systemd/docker.service
+
# comments below reflect experience from upstream.
systemd.services.docker = {
description = "Docker Application Container Engine";
+
wantedBy = optional cfg.enableOnBoot "multi-user.target";
+
after = [ "network.target" "docker.socket" ];
+
requires = ["docker.socket"];
+
# the default is not to use systemd for cgroups because the delegate issues still
+
# exists and systemd currently does not support the cgroup feature set required
+
# for containers run by docker
ExecStart = ''${pkgs.docker}/bin/dockerd \
+
--log-driver=${cfg.logDriver} \
${optionalString (cfg.storageDriver != null) "--storage-driver=${cfg.storageDriver}"} \
+
${optionalString cfg.liveRestore "--live-restore" } \
+
ExecReload="${pkgs.procps}/bin/kill -s HUP $MAINPID";
+
# Having non-zero Limit*s causes performance problems due to accounting overhead
+
# in the kernel. We recommend using cgroups to do container-local accounting.
+
# set delegate yes so that systemd does not reset the cgroups of docker containers
+
# kill only the docker process, not all processes in the cgroup
path = [ pkgs.kmod ] ++ (optional (cfg.storageDriver == "zfs") pkgs.zfs);
systemd.sockets.docker = {
description = "Docker Socket for the API";
wantedBy = [ "sockets.target" ];
+
ListenStream = cfg.listenOptions;