Centos7安裝Docker及運行hello-world

yum -y install gcc
yum -y install gcc-c++
  • 啓動docker:
systemctl start docker
  • 測試:
docker version
docker run hello-world
  • 卸載:
systemctl stop docker 
yum -y remove docker-ce
rm -rf /var/lib/docker

啓動Docker後臺容器(測試運行 hello-world)

  • docker run hello-world
    輸出這段提示之後,hello world就會中止運行,容器自動終止。
    在這裏插入圖片描述
  • run幹了什麼
    在這裏插入圖片描述
相關文章
相關標籤/搜索