spectre007
spectre007

Reputation: 1539

What are different options to deliver docker images

I am exploring different options for deliver docker images. I see currently two options

  1. Docker Hub, public or private repository
  2. Docker save and export command feature

are there any other options Docker provides or any recommendations ?

Upvotes: 0

Views: 65

Answers (1)

208rishabh
208rishabh

Reputation: 96

The list includes:

  1. Docker Hub: public and private repo
  2. Docker Trusted Registry: http://docs.docker.com/docker-trusted-registry/
  3. Docker save and export
  4. If multiple docker clients connect to the same daemon, images are shared among the clients.

Upvotes: 1

Related Questions