Setting up a private Docker image registry server

Set up a private Docker image registry server to store published images that are created by the Docker processes and used in the automated deployments of IBM Sterling Order Management.

Click here for information about how to set up a Docker image registry server.

The following provides a sample command that creates a repository with its registry storage directory mounted on a host location:

docker run -d -p 5000:5000 -e REGISTRY_HTTP_ADDR=0.0.0.0:5000 -e REGISTRY_STORAGE_FILESYSTEM_ROOTDIRECTORY=/tmp/registry -v /root/dockerImageStorage:/tmp/registry --name devrepo Docker.io/registry:2.0

However, this command is merely a sample and may not suffice for an actual deployment of a private Docker registry. Click here for additional configuration details.