Skip to content

Instantly share code, notes, and snippets.

@saidsef
Created June 3, 2018 19:08
Show Gist options
  • Save saidsef/a6f60345d652bf28e913d785a721ccc3 to your computer and use it in GitHub Desktop.
Save saidsef/a6f60345d652bf28e913d785a721ccc3 to your computer and use it in GitHub Desktop.

Step By Step Guide To Setup CI/CD With Docker Registry

Step-by-Step Guide how to install CI/CD with Docker Registry On Ubuntu 14.04 LTS from scratch.

  1. Install Docker using Official Manual
  2. Deploying a registry server
docker run -d -p 5000:5000 --restart=always --name registry registry:2

Running your own Registry is a great solution to integrate with and complement your CI/CD system. In a typical workflow, a commit to your source revision control system would trigger a build on your CI system, which would then push a new image to your Registry if the build is successful. A notification from the Registry would then trigger a deployment on a staging environment, or notify other systems that a new image is available. more

See also

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment