You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Nov 29, 2020. It is now read-only.
debian|raspbian)
dist_version="$(sed 's/\/.*//' /etc/debian_version | sed 's/\..*//')"
case "$dist_version" in
9)
dist_version="stretch"
;;
修改为:
debian|raspbian)
dist_version="$(sed 's/\/.*//' /etc/debian_version | sed 's/\..*//')"
case "$dist_version" in
10)
dist_version="buster"
9)
dist_version="stretch"
;;
请提供如下信息:
/opt/rainbond/rainbond-ansible/log/)问题文件:https://github.com/goodrain/rainbond-ansible/blob/devel/roles/docker/install/tasks/online.yml
关联命令:curl -fsSL http://rainbond-pkg.oss-cn-shanghai.aliyuncs.com/releases/docker/install-docker.sh
目前各大镜像源的Debian 10已经更名为Debian Buster,即将原来的
修复方案是将上面提到的 install-docker.sh 中第324行起:
修改为:
也可以通过读取 /etc/os-release 文件中 VERSION_CODENAME 键值,来获取正确的版本名。
或者与上游 (
curl -fsL get.docker.com | bash)保持同步,即可解决此问题