gitlab-org--gitlab-foss/app/views/projects/registry/repositories/index.html.haml

27 lines
840 B
Plaintext
Raw Normal View History

2016-05-08 20:50:30 +00:00
- page_title "Container Registry"
2016-04-18 12:14:40 +00:00
2016-05-04 14:17:35 +00:00
%hr
2016-04-18 12:14:40 +00:00
%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
2017-01-25 12:02:09 +00:00
docker build -t #{escape_once(@project.container_registry_url)}/image .
%br
2017-01-25 12:02:09 +00:00
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.
2016-04-18 12:14:40 +00:00
- else
= render partial: 'image', collection: @images