1
爲什麼以下pull centos版本6?如何從集線器中提取docker文件的版本?
docker pull centos:v6
Tag v6 not found in repository docker.io/library/centos
或本:
docker pull centos6
Error: image library/centos6:latest not found
爲什麼以下pull centos版本6?如何從集線器中提取docker文件的版本?
docker pull centos:v6
Tag v6 not found in repository docker.io/library/centos
或本:
docker pull centos6
Error: image library/centos6:latest not found
這個怎麼樣?從這裏https://hub.docker.com/_/centos/
docker pull centos:centos6
或者
docker pull centos:6
格式
<container_name>:tag
沒有一個標籤,它會拉latest
。 Docker Hub上的所有code_blocks
都代表標籤。
這是有效的。以下所有標籤都是:https://hub.docker.com/_/centos/? – 4thSpace
是的,我認爲我的編輯解釋說 –