"Systemctl cat docker.service"의 두 판 사이의 차이

(새 문서: ==개요== <source lang='console'> root@host01:~# systemctl cat docker.service # /lib/systemd/system/docker.service [Unit] Description=Docker Application Container Engine Documentatio...)
 
 
1번째 줄: 1번째 줄:
{{소문자}}
==개요==
==개요==
;systemctl cat docker.service
<source lang='console'>
<source lang='console'>
root@host01:~# systemctl cat docker.service
root@host01:~# systemctl cat docker.service

2019년 5월 9일 (목) 01:47 기준 최신판

1 개요[ | ]

systemctl cat docker.service
root@host01:~# systemctl cat docker.service
# /lib/systemd/system/docker.service
[Unit]
Description=Docker Application Container Engine
Documentation=https://docs.docker.com
After=network.target docker.socket
Requires=docker.socket

[Service]
Type=notify
EnvironmentFile=/etc/sysconfig/docker
EnvironmentFile=/etc/environment
ExecStart=/usr/bin/dockerd -H fd:// "$DOCKER_OPTS"
ExecReload=/bin/kill -s HUP $MAINPID
KillMode=process
TimeoutStartSec=0
LimitNOFILE=1048576
LimitNPROC=1048576
LimitCORE=infinity
TasksMax=infinity
Restart=always
RestartSec=2s
StartLimitInterval=0
Delegate=yes
ExecStartPre=/opt/kubernetes/helpers/docker-prestart

[Install]
WantedBy=multi-user.target

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}