我们可以在单个私人仓库上托管多个图片吗?
像
所以我的私人回购像MYREPO:ubuntu:12.04和ubuntu:14.04
答案 0 :(得分:14)
是
# Create a container
docker run --name image1 -it busybox echo Image1
# Commit container to new image
docker commit image1 amjibaly/stuff:image1
# Push to dockerhub repo
docker push amjibaly/stuff:image1
# Create a second container
docker run --name image2 -it busybox echo Image2
# Commit container to new image
docker commit image2 amjibaly/stuff:image2
# Push to same dockerhub repo with different tag
docker push amjibaly/stuff:image2