Skip to content

Commit fa69ed9

Browse files
committed
.
1 parent 22794dd commit fa69ed9

File tree

1 file changed

+48
-0
lines changed

1 file changed

+48
-0
lines changed

README.md

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,3 +115,51 @@ sudo apt-get update \
115115
&& sudo usermod -aG docker $USER \
116116
&& sudo init 6
117117
```
118+
119+
## /etc/docker/daemon.json
120+
121+
```json
122+
{
123+
"mtu": 9000,
124+
"ipv6": true,
125+
"fixed-cidr-v6": "FC00::/7",
126+
"ip6tables": true,
127+
"experimental": true,
128+
"default-address-pools": [
129+
{ "base": "172.30.0.0/16", "size": 16 },
130+
{ "base": "172.31.0.0/16", "size": 16 },
131+
{ "base": "172.32.0.0/16", "size": 16 },
132+
{ "base": "172.33.0.0/16", "size": 16 },
133+
{ "base": "172.34.0.0/16", "size": 16 },
134+
{ "base": "172.35.0.0/16", "size": 16 },
135+
{ "base": "172.36.0.0/16", "size": 16 },
136+
{ "base": "172.37.0.0/16", "size": 16 },
137+
{ "base": "172.38.0.0/16", "size": 16 },
138+
{ "base": "172.39.0.0/16", "size": 16 },
139+
{ "base": "172.40.0.0/16", "size": 16 },
140+
{ "base": "172.41.0.0/16", "size": 16 },
141+
{ "base": "172.42.0.0/16", "size": 16 },
142+
{ "base": "172.43.0.0/16", "size": 16 },
143+
{ "base": "172.44.0.0/16", "size": 16 },
144+
{ "base": "172.45.0.0/16", "size": 16 },
145+
{ "base": "2603:c024:0010:6400:d0c::/56", "size": 56 }
146+
],
147+
"default-shm-size": "512M",
148+
"features": {
149+
"containerd-snapshotter": true
150+
},
151+
"log-driver": "json-file",
152+
"log-opts": {
153+
"max-size": "5m",
154+
"max-file": "30",
155+
"labels": "production_status",
156+
"env": "os,customer"
157+
},
158+
"live-restore": true,
159+
"max-concurrent-downloads": 5,
160+
"max-concurrent-uploads": 5,
161+
"max-download-attempts": 5,
162+
"dns": ["8.8.4.4", "8.8.8.8", "2001:4860:4860::8888", "2001:4860:4860::8844"]
163+
}
164+
165+
```

0 commit comments

Comments
 (0)