docker images
docker container ls
配置成功後查詢不到安裝docker
brew install docker
配置映象加速
vi /etc/docker/daemon.json
輸入:
啟動docker
docker run -d -p 5000:5000 --restart=always --name registry registry:2
檢視容器列表
docker container ls或者docker ps
拉ubuntu:16.04映象
docker pull ubuntu:16.04
建立新的映象,映象命名字首指定了推送的私服位址
docker image tag ubuntu:16.04 localhost:5000/myfirstimage
將映象推送到執行於的本地登錄檔localhost:5000:
docker push localhost:5000/myfirstimage
刪除本地映象
docker image remove ubuntu:16.04
再從本地私服拉下來
dockder imagesdocker pull localhost:5000/myfirstimage
檢視映象
docker images
檢視容器
docker ps
執行映象容器,開啟互動模式
docker run -it 77
退出互動模式
ctrl+p ctrl+q
安裝軟體
apt update
apt install vim
exit
6.開啟映象
//查詢所有映象
docker ps
//開啟名為nostalgic_gagarin的映象
docker attach nostalgic_gagarin
docker基本使用
docker 建立及執行 1.建立乙個資料夾 docker 3.執行 docker build t myimage v1 或docker build t myimage 命令介紹 myimage v1 myimage是映象名稱,v1是版本。版本可以不寫 不寫時,版本號為latest 4.檢視映象 d...
docker基本使用
在專案中使用docker部署環境,docker常見的命令如下 docker命令使用 1 檢視docker資訊 docker version docker info 2 檢視容器日誌 docker logs f 容器id 3 檢視docker中所有映象 docker images 4 查詢docker...
Docker 基本使用
安裝 更新相關軟體 新增docker源 curl fssl sudo apt key add sudo add apt repository deb arch amd64 bionic stable sudo apt update apt cache policy docker ce 下面是安裝資訊...