[problem help] DOCKER容器安装失败
Tofloor
poster avatar
彬彬有李先生
deepin
2024-09-17 16:42
Author

环境说明:

DeepinV23+Docker(Version 19.03.8)

下载Docker镜像后,安装容器时,安装失败了,具体提示如下:

docker run --rm -d -p 6379:6379/tcp hub.atomgit.com/amd64/redis:7.0.13

7872f0800b6a47c9b70c11e84ce462438e79e24e9ff8e15757b866f248424ab4
docker: Error response from daemon: OCI runtime create failed: container_linux.go:344: starting container process caused "process_linux.go:275: applying cgroup configuration for process caused "mountpoint for cgroup not found"": unknown.

终端进程“/usr/bin/bash '--rcfile', '/home/bizuser/.config/Code/User/globalStorage/pleiades.java-extension-pack-jdk/.bashrc', '-c', 'docker run --rm -d -p 6379:6379/tcp hub.atomgit.com/amd64/redis:7.0.13'”已终止

尝试过重新安装docker,重新下载镜像、甚至其他的镜像,也会有这各问题,当前无解中...

目前等于Docker容器无法安装,求助该问题解决办法

Reply Favorite View the author
All Replies
neko
deepin
Ecological co-builder
2024-09-17 18:20
#1
Reply View the author
柠萌~
deepin
2024-09-17 20:17
#2

applaud

Reply View the author
新手来啦~
deepin
2024-09-17 21:46
#3

参考沙发

Reply View the author
彬彬有李先生
deepin
2024-09-18 13:23
#4

根据您提供的链接地址,在该地址底部看到类似操作:

image.png

image.png

image.png

image.png

这个好像不存在

https://download.docker.com/linux/debian apricot stable

这个现在又该怎么解决呢?

Reply View the author
neko
deepin
Ecological co-builder
2024-09-18 17:37
#5
彬彬有李先生

根据您提供的链接地址,在该地址底部看到类似操作:

image.png

image.png

image.png

image.png

这个好像不存在

https://download.docker.com/linux/debian apricot stable

这个现在又该怎么解决呢?

apricot是deepin的代号不是debian的

Reply View the author
neko
deepin
Ecological co-builder
2024-09-18 17:38
#6

建议使用源里自带的docker.io包
image.png

Reply View the author
彬彬有李先生
deepin
2024-09-18 18:53
#7
neko

建议使用源里自带的docker.io包
image.png

为啥我安装的版本,没你高?

Reply View the author
彬彬有李先生
deepin
2024-09-18 18:55
#8
neko

apricot是deepin的代号不是debian的

没懂呢,

Reply View the author
neko
deepin
Ecological co-builder
2024-09-18 19:46
#9
彬彬有李先生

为啥我安装的版本,没你高?

你怎么安装的?

我是直接sudo apt install docker.io

Reply View the author
彬彬有李先生
deepin
2024-09-19 12:36
#10
neko

建议使用源里自带的docker.io包
image.png

安装时sources.list里面就是默认的仓库地址,但是版本号是19*

Reply View the author
彬彬有李先生
deepin
2024-09-19 12:40
#11
neko

你怎么安装的?

我是直接sudo apt install docker.io

我也是怎么安装的

Reply View the author
neko
deepin
Ecological co-builder
2024-09-19 12:46
#12
彬彬有李先生

我也是怎么安装的

有开启内测源吗,我的是内测源

Reply View the author
彬彬有李先生
deepin
2024-09-19 12:53
#13
neko

有开启内测源吗,我的是内测源

image.png

仓库源头只有1个

Reply View the author
彬彬有李先生
deepin
2024-09-20 11:07
#14
neko

有开启内测源吗,我的是内测源

没开启吧 ,都不知道怎么开启内测版

Reply View the author
neko
deepin
Ecological co-builder
2024-09-20 21:41
#15
彬彬有李先生

没开启吧 ,都不知道怎么开启内测版

控制中心 更新设置里面打开

Reply View the author
彬彬有李先生
deepin
2024-09-21 21:14
#16

在这统一回复:

感谢大家的关注并提出了相关的建议,目前经过经过各种尝试(也综合了大家的建议),最终是解决了,解决的办法如下:

1.切换deepin仓库地址

sources.list 内置的地址切换为 deb [arch=amd64] https://mirrors.aliyun.com/docker-ce/linux/debian buster stable

2.修改docker配置镜像

{
"registry-mirrors": [
"https://hub-mirror.c.163.com",
"https://registry.docker-cn.com",
"https://mirror.ccs.tencentyun.com",
"https://docker.m.daocloud.io"
],
"data-root":"/home/bizuser/soft/docker-data",
"exec-opts": ["native.cgroupdriver=systemd"]
}

注意:docker镜像加速地址,此处省略了

3.卸载系统服务

sudo apt-get reomve apparmor

这个服务导致容器Run时失败

4.镜像下载

使用新的镜像地址

https://hub.atomgit.com/

5.重新初始容器

注意:由于镜像格式本身也存在版本,所以有的镜像格式可能与新的系统不兼容,导致无法下载,比如镜像:registry.cn-hangzhou.aliyuncs.com/helowin/oracle_11g 已经不适合当前版本系统,这个解决办法需要重新升级镜像,或者转换镜像格式。

在此,再次感谢大家的关注与建议。

Reply View the author