ソースを参照

systemd: don't limit tasks

Systemd sets a default of 512 tasks, which is far
too low to run many containers.

Note that TasksMax is only supported on systemd 226
and above.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
Sebastiaan van Stijn 6 年 前
コミット
7daf2db62a
1 ファイル変更4 行追加0 行削除
  1. 4 0
      contrib/init/systemd/docker.service

+ 4 - 0
contrib/init/systemd/docker.service

@@ -23,5 +23,9 @@ LimitNOFILE=infinity
 LimitNPROC=infinity
 LimitCORE=infinity
 
+# Comment TasksMax if your systemd version does not supports it.
+# Only systemd 226 and above support this option.
+TasksMax=infinity
+
 [Install]
 WantedBy=multi-user.target