Private Docker repo with multiple images

Is it possible to host multiple images on the same private repo?

how

  • ubuntu: 12.04
  • ubuntu: 14.04

So my personal repo like MYREPO: ubuntu: 12.04 and ubuntu: 14.04

+3


source to share


1 answer


Yes.



# 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

      

+11


source







All Articles