docker安裝後默認沒有daemon.json這個配置文件,須要進行手動建立。配置文件的默認路徑:/etc/docker/daemon.jsonnode
通常狀況,配置文件 daemon.json中配置的項目參數,在啓動參數中一樣適用,有些可能不同(具體能夠查看官方文檔),但須要注意的一點,配置文件中若是已經有某個配置項,則沒法在啓動參數中增長,會出現衝突的錯誤。linux
若是在daemon.json文件中進行配置,須要docker版本高於1.12.6(在這個版本上不生效,1.13.1以上是生效的)docker
參數
daemon.json文件可配置的參數表,咱們在配置的過程當中,只須要設置咱們須要的參數便可,沒必要所有寫出來。詳細參考官網。json
官方的配置地址:https://docs.docker.com/engine/reference/commandline/dockerd/#/configuration-reloading。vim
官方的配置地址:https://docs.docker.com/engine/reference/commandline/dockerd/#optionsapi
官方的配置地址:https://docs.docker.com/engine/reference/commandline/dockerd/#/linux-configuration-file安全
{ "api-cors-header":"", "authorization-plugins":[], "bip": "", "bridge":"", "cgroup-parent":"", "cluster-store":"", "cluster-store-opts":{}, "cluster-advertise":"", "debug": true, #啓用debug的模式,啓用後,能夠看到不少的啓動信息。默認false "default-gateway":"", "default-gateway-v6":"", "default-runtime":"runc", "default-ulimits":{}, "disable-legacy-registry":false, "dns": ["192.168.1.1"], # 設定容器DNS的地址,在容器的 /etc/resolv.conf文件中可查看。 "dns-opts": [], # 容器 /etc/resolv.conf 文件,其餘設置 "dns-search": [], # 設定容器的搜索域,當設定搜索域爲 .example.com 時,在搜索一個名爲 host 的 主機時,DNS不只搜索host,還會搜 索host.example.com 。 注意:若是不設置, Docker 會默認用主機上的 /etc/resolv.conf 來配置容器。 "exec-opts": [], "exec-root":"", "fixed-cidr":"", "fixed-cidr-v6":"", "graph":"/var/lib/docker", #已廢棄,使用data-root代替,這個主要看docker的版本 "data-root":"/var/lib/docker", #Docker運行時使用的根路徑,根路徑下的內容稍後介紹,默認/var/lib/docker "group": "", #Unix套接字的屬組,僅指/var/run/docker.sock "hosts": [], #設置容器hosts "icc": false, "insecure-registries": [], #配置docker的私庫地址 "ip":"0.0.0.0", "iptables": false, "ipv6": false, "ip-forward": false, #默認true, 啓用 net.ipv4.ip_forward ,進入容器後使用 sysctl -a | grepnet.ipv4.ip_forward 查看 "ip-masq":false, "labels":["nodeName=node-121"], # docker主機的標籤,很實用的功能,例如定義:–label nodeName=host-121 "live-restore": true, "log-driver":"", "log-level":"", "log-opts": {}, "max-concurrent-downloads":3, "max-concurrent-uploads":5, "mtu": 0, "oom-score-adjust":-500, "pidfile": "", #Docker守護進程的PID文件 "raw-logs": false, "registry-mirrors":["xxxx"], #鏡像加速的地址,增長後在 docker info中可查看。 "runtimes": { "runc": { "path": "runc" }, "custom": { "path":"/usr/local/bin/my-runc-replacement", "runtimeArgs": [ "--debug" ] } }, "selinux-enabled": false, #默認 false,啓用selinux支持 "storage-driver":"", "storage-opts": [], "swarm-default-advertise-addr":"", "tls": true, #默認 false, 啓動TLS認證開關 "tlscacert": "", #默認 ~/.docker/ca.pem,經過CA認證過的的certificate文件路徑 "tlscert": "", #默認 ~/.docker/cert.pem ,TLS的certificate文件路徑 "tlskey": "", #默認~/.docker/key.pem,TLS的key文件路徑 "tlsverify": true, #默認false,使用TLS並作後臺進程與客戶端通信的驗證 "userland-proxy":false, "userns-remap":"" }
上述是官網docs提供的一個示例配置,咱們能夠參考,選擇性的配置其中的部份內容。cors
一、如何配置 registry 私庫相關的參數
涉及如下2個參數:網站
"insecure-registries": [], #這個私庫的服務地址 "registry-mirrors": [], #私庫加速器
2.配置示例:debug
# cat /etc/docker/daemon.json { "registry-mirrors": [ "https://d8b3zdiw.mirror.aliyuncs.com" ], "insecure-registries": [ "https://ower.site.com" ], }
1.默認沒有文件,因此咱們須要先建立,進入/etc/docker目錄下,記得建立的文件全部者是root(vim或touch,記得chown修改全部者)
-rw-r--r-- 1 root root 71 Dec 19 17:25daemon.json
2.在文檔中配置想要添加的參數:如,鏡像加速器網站,私庫網站
# cat /etc/docker/daemon.json { "registry-mirrors":[ "https://d8b3zdiw.mirror.aliyuncs.com" ], "insecure-registries": [ "https://ower.site.com" ], }
3.建立並修改完daemon.json文件後,須要讓這個文件生效
a.修改完成後reload配置文件
sudo systemctl daemon-reload
b.重啓docker服務
sudo systemctl restart docker.service
c.查看狀態
sudo systemctl status docker -l
d.查看服務
sudo docker info
當咱們須要對docker服務進行調整配置時,不用去修改主文件 docker.service的參數,經過daemon.json配置文件來管理,更爲安全、合理。