Docker_k8s

(Docker) daemon.json 의 구조 (On Windows)

kjun.kr 2019. 4. 23. 23:23
728x90

{
   
"authorization-plugins": [],
   
"data-root": "",
   
"dns": [],
   
"dns-opts": [],
   
"dns-search": [],
   
"exec-opts": [],
   
"experimental": false,
   
"features":{},
   
"storage-driver": "",
   
"storage-opts": [],
   
"labels": [],
   
"log-driver": "",
   
"mtu": 0,
   
"pidfile": "",
   
"cluster-store": "",
   
"cluster-advertise": "",
   
"max-concurrent-downloads": 3,
   
"max-concurrent-uploads": 5,
   
"shutdown-timeout": 15,
   
"debug": true,
   
"hosts": [],
   
"log-level": "",
   
"tlsverify": true,
   
"tlscacert": "",
   
"tlscert": "",
   
"tlskey": "",
   
"swarm-default-advertise-addr": "",
   
"group": "",
   
"default-ulimits": {},
   
"bridge": "",
   
"fixed-cidr": "",
   
"raw-logs": false,
   
"allow-nondistributable-artifacts": [],
   
"registry-mirrors": [],
   
"insecure-registries": []
}

 

아래는 도커의 설정의 Daemon Advanced 설정 값이다.

 

참고

https://docs.docker.com/engine/reference/commandline/dockerd/#daemon-configuration-file

728x90