Howto::Docker Registry: Difference between revisions

From Computer Science Wiki
Jump to navigation Jump to search
No edit summary
Line 23: Line 23:
** docker.cs.vt.edu/<username>/<project>/<image>:<tag>
** docker.cs.vt.edu/<username>/<project>/<image>:<tag>
* You tag your docker build with the image URL, example:
* You tag your docker build with the image URL, example:
** <code>docker build -t docker.cs.vt.edu/carnold/project1/testimage .</code>
** <code>docker build -t docker.cs.vt.edu/carnold/library/hello .</code>
* Push the image up to your registry
* Push the image up to your registry
** <code>docker push docker.cs.vt.edu/carnold/project1/testimage</code>
** <code>docker push docker.cs.vt.edu/carnold/library/hello</code>


=== Running an image ===
=== Running an image ===
* <code>docker run docker.cs.vt.edu/carnold/project1/testimage:latest</code>
* <code>docker run docker.cs.vt.edu/carnold/library/hello:latest</code>


== Public Vs. Internal Vs. Private ==
== Public Vs. Internal Vs. Private ==

Revision as of 10:55, 22 February 2019

Introduction

We offer a docker image registry service tied with https://git.cs.vt.edu that offers a place to share your docker images and version control them. This is a quick start guide on how to use our docker registry.

Create Project

First you must create a project in git.cs.vt.edu to store your images or make sure registry is enabled on an existing project. For new projects, the registry is automatically enabled. For an older project you must enable it:

  1. Login into https://git.cs.vt.edu
  2. Open the project
  3. Go to "Settings->General"
  4. Expand "Permissions"
  5. Make sure "Container registry" is checked

Using Registry

These commands are run on your development machine.

Log into registry

To be able to push images up to your registry, you must log in

  • docker login docker.cs.vt.edu

Build and push image

Example of building your docker image and uploading it to your registry

  • Determine your image's URL with optional tag:
    • docker.cs.vt.edu/<username>/<project>/<image>:<tag>
  • You tag your docker build with the image URL, example:
    • docker build -t docker.cs.vt.edu/carnold/library/hello .
  • Push the image up to your registry
    • docker push docker.cs.vt.edu/carnold/library/hello

Running an image

  • docker run docker.cs.vt.edu/carnold/library/hello:latest

Public Vs. Internal Vs. Private

Public

If your project is set as "public", this will allow anyone on the Internet to be able to download use your images.

Internal

If your project is set as "internal", then anyone with access to git.cs.vt.edu can download and use the images after they login with their login.

Private

If your project is set as "private", then only you will be able download and use the images after you login. Unless you create a deploy token.

Deploy Token

You can create a "deploy token" that will allow anyone you share the token with to download and use your images. The user will login with your username and the token as the password. Tokens expire after a time limit. Note: once downloaded the client will have a cached copy of the images, even after the token expires. Find out more about deploy tokens: https://docs.gitlab.com/ce/user/project/deploy_tokens/index.html