正在运行 opensuse:13.1 docker 镜像,但它显示的是 ubuntu

正在运行 opensuse:13.1 docker 镜像,但它显示的是 ubuntu

我正在运行 opensuse:13.1 docker 镜像,但它在“uname -a”命令中显示 ubuntu。我只是想知道这是 SuSe 的 docker 镜像的问题还是我这边的问题。

root@ip-172-31-22-20:~/docker-emr# docker run -it opensuse:13.1                                      bash
bash-4.2# uname -a
Linux 3e52b37a2610 3.13.0-92-generic #139-Ubuntu SMP Tue Jun 28 20:42:26 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux
bash-4.2#

甚至尝试使用 Dockerfile :

# cat Dockerfile
FROM opensuse:13.1

#MAINTAINER <your name> "<your email>"

# make sure the repositories are up to date
RUN zypper --non-interactive --gpg-auto-import-keys ref

RUN zypper in -y vim

建造:

root@ip-172-31-22-20:~/docker-opensuse# docker build -t ashishkarpe/my-opensuse:1.0 .
Sending build context to Docker daemon  2.048kB
Step 1/1 : FROM opensuse:13.1
 ---> b8cb6b50a4a2
Successfully built b8cb6b50a4a2

命令:

root@ip-172-31-22-20:~/docker-opensuse# docker run -it ashishkarpe/my-opensuse:1.0 bash
bash-4.2# uname -a
Linux febbf7acc931 3.13.0-92-generic #139-Ubuntu SMP Tue Jun 28 20:42:26 UTC 2016 x86_64 x86_64 x86_64 GNU/Linux

參考文獻:https://news.opensuse.org/2014/08/07/official-docker-containers/

PS:zypper 只能在 suse 中使用吗?

答案1

Docker 容器使用其主机的内核,这就是您看到 Ubuntu 提供的内核的原因。如果您需要真正的虚拟化解决方案,可以使用单独的内核,请查看 KVM。

相关内容