威联通QNAP替换docker源
【代码】威联通QNAP替换docker源。
·
vi /share/CACHEDEV1_DATA/.qpkg/container-station/etc/docker.json
原配置信息
{
"experimental": false,
"default-address-pools": [
{
"base": "172.29.0.0/16",
"size": 22
}
],
"default-ulimits": {
"nofile": {
"Name": "nofile",
"Hard": 65535,
"Soft": 65535
}
},
"group": "administrators",
"log-driver": "json-file",
"log-opts": {
"max-size": "10m",
"max-file": "10"
},
"runtimes": {
"kata-runtime": {
"path": "/opt/kata/bin/kata-runtime"
},
"nvidia-runtime": {
"path": "/opt/nvidia/bin/nvidia-container-runtime"
}
},
"ip6tables": false
}
添加新源
,
"registry-mirrors": [
"https://docker.m.daocloud.io",
"https://docker.1ms.run",
"https://dockerproxy.net",
"https://huecker.io",
"https://dockerhub.timeweb.cloud"
]
修改后
{
"experimental": false,
"default-address-pools": [
{
"base": "172.29.0.0/16",
"size": 22
}
],
"default-ulimits": {
"nofile": {
"Name": "nofile",
"Hard": 65535,
"Soft": 65535
}
},
"group": "administrators",
"log-driver": "json-file",
"log-opts": {
"max-size": "10m",
"max-file": "10"
},
"runtimes": {
"kata-runtime": {
"path": "/opt/kata/bin/kata-runtime"
},
"nvidia-runtime": {
"path": "/opt/nvidia/bin/nvidia-container-runtime"
}
},
"ip6tables": false,
"registry-mirrors": [
"https://docker.m.daocloud.io",
"https://docker.1ms.run",
"https://dockerproxy.net",
"https://huecker.io",
"https://dockerhub.timeweb.cloud"
]
}
重启docker
sudo /etc/init.d/container-station.sh restart
We trust you have received the usual lecture from the local System
Administrator. It usually boils down to these three things:
#1) Respect the privacy of others.
#2) Think before you type.
#3) With great power comes great responsibility.
Password: 输入后密码后done
看是否配置成功
命令行输入
docker info
更多推荐
所有评论(0)