docker version
查看docker版本資訊

docker search nginx
查找nginx鏡像檔案
docker images
查看所有鏡像檔案

docker pull mysql
獲取最新版本的mysql

docker pull mysql:5.7.35
下載指定版本(5.7.35)的mysql
docker ps
查看docker行程快照

docker stop hello-world
停止hello-world容器
docker start hello-world
開啟hello-world容器
docker rm hello-world
洗掉hello-world容器
docker run = docker create + docker start

轉載請註明出處,本文鏈接:https://www.uj5u.com/ruanti/293321.html
標籤:其他
上一篇:基于socket.io +koa2 +天行機器人 實作簡單人機實時通訊(nginx處理socket.io https代理問題)
