mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
105778343a
systemd sets an additional limit on processes and threads that defaults to 512 when run under Linux >= 4.3. See more information here: http://unix.stackexchange.com/a/255603/59955 Signed-off-by: Candid Dauth <cdauth@cdauth.eu>
18 lines
364 B
Desktop File
18 lines
364 B
Desktop File
[Unit]
|
|
Description=Docker Application Container Engine
|
|
Documentation=https://docs.docker.com
|
|
After=network.target docker.socket
|
|
Requires=docker.socket
|
|
|
|
[Service]
|
|
Type=notify
|
|
ExecStart=/usr/bin/docker daemon -H fd://
|
|
MountFlags=slave
|
|
LimitNOFILE=1048576
|
|
LimitNPROC=1048576
|
|
LimitCORE=infinity
|
|
TasksMax=1048576
|
|
TimeoutStartSec=0
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|