Created
April 19, 2021 15:27
-
-
Save 5baddi/8a99a624685d3db2379db7722371e835 to your computer and use it in GitHub Desktop.
Example Docker daemon.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "api-cors-header": "", | |
| "authorization-plugins": [], | |
| "bip": "", | |
| "bridge": "", | |
| "cgroup-parent": "", | |
| "cluster-store": "", | |
| "cluster-store-opts": {}, | |
| "cluster-advertise": "", | |
| "debug": true, | |
| "default-gateway": "", | |
| "default-gateway-v6": "", | |
| "default-runtime": "runc", | |
| "disable-legacy-registry": false, | |
| "dns": [], | |
| "dns-opts": [], | |
| "dns-search": [], | |
| "exec-opts": [], | |
| "exec-root": "", | |
| "fixed-cidr": "", | |
| "fixed-cidr-v6": "", | |
| "graph": "", | |
| "group": "", | |
| "hosts": ["fd://","unix:///var/run/docker.sock","tcp://0.0.0.0:2376"], | |
| "icc": true, | |
| "insecure-registries": [], | |
| "ip": "0.0.0.0", | |
| "iptables": true, | |
| "ipv6": false, | |
| "ip-forward": false, | |
| "ip-masq": false, | |
| "labels": [], | |
| "live-restore": true, | |
| "log-driver": "", | |
| "log-level": "", | |
| "log-opts": {}, | |
| "max-concurrent-downloads": 3, | |
| "max-concurrent-uploads": 5, | |
| "mtu": 0, | |
| "oom-score-adjust": -500, | |
| "pidfile": "", | |
| "raw-logs": false, | |
| "registry-mirrors": [], | |
| "runtimes": {}, | |
| "selinux-enabled": false, | |
| "storage-driver": "", | |
| "storage-opts": [], | |
| "swarm-default-advertise-addr": "", | |
| "tls": true, | |
| "tlscacert": "/etc/docker/tls/ca.pem", | |
| "tlscert": "/etc/docker/tls/server-cert.pem", | |
| "tlskey": "/etc/docker/tls/server-key.pem", | |
| "tlsverify": true, | |
| "userland-proxy": false, | |
| "userns-remap": "" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment