gitlab-org--gitlab-foss/app/views/projects/registry/repositories/index.html.haml
2017-04-04 11:52:56 +02:00

26 lines
840 B
Text

- page_title "Container Registry"
%hr
%ul.content-list
%li.light.prepend-top-default
%p
A 'container image' is a snapshot of a container.
You can host your container images with GitLab.
%br
To start using container images hosted on GitLab you first need to login:
%pre
%code
docker login #{Gitlab.config.registry.host_port}
%br
Then you are free to create and upload a container image with build and push commands:
%pre
docker build -t #{escape_once(@project.container_registry_url)}/image .
%br
docker push #{escape_once(@project.container_registry_url)}/image
- if @images.blank?
.nothing-here-block No container image repositories in Container Registry for this project.
- else
= render partial: 'image', collection: @images