39 lines
1.1 KiB
INI
39 lines
1.1 KiB
INI
|
[Unit]
|
||
|
Description=Docker Application Container Engine
|
||
|
Documentation=http://docs.docker.com
|
||
|
After=network.target
|
||
|
Wants=docker-storage-setup.service
|
||
|
Requires=docker-cleanup.timer
|
||
|
|
||
|
[Service]
|
||
|
Type=notify
|
||
|
NotifyAccess=all
|
||
|
EnvironmentFile=-/etc/sysconfig/docker
|
||
|
EnvironmentFile=-/etc/sysconfig/docker-storage
|
||
|
EnvironmentFile=-/etc/sysconfig/docker-network
|
||
|
Environment=GOTRACEBACK=crash
|
||
|
Environment=DOCKER_HTTP_HOST_COMPAT=1
|
||
|
Environment=PATH=/usr/libexec/docker:/usr/bin:/usr/sbin
|
||
|
ExecStart=/usr/bin/dockerd-current \
|
||
|
--add-runtime docker-runc=/usr/libexec/docker/docker-runc-current \
|
||
|
--default-runtime=docker-runc \
|
||
|
--userland-proxy-path=/usr/libexec/docker/docker-proxy-current \
|
||
|
$OPTIONS \
|
||
|
$DOCKER_STORAGE_OPTIONS \
|
||
|
$DOCKER_NETWORK_OPTIONS \
|
||
|
$ADD_REGISTRY \
|
||
|
$BLOCK_REGISTRY \
|
||
|
$INSECURE_REGISTRY \
|
||
|
--log-driver=json-file \
|
||
|
--insecure-registry=sz-pg-oam-docker-hub-001.tendcloud.com
|
||
|
ExecReload=/bin/kill -s HUP $MAINPID
|
||
|
LimitNOFILE=1048576
|
||
|
LimitNPROC=1048576
|
||
|
LimitCORE=infinity
|
||
|
TimeoutStartSec=0
|
||
|
Restart=on-abnormal
|
||
|
MountFlags=slave
|
||
|
|
||
|
[Install]
|
||
|
WantedBy=multi-user.target
|