Always show documentation how to access images
This commit is contained in:
parent
91c4002a0c
commit
8572a6b2d4
1 changed files with 16 additions and 16 deletions
|
@ -4,26 +4,26 @@
|
|||
%hr
|
||||
|
||||
%ul.content-list
|
||||
.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_repository_url)} .
|
||||
%br
|
||||
docker push #{escape_once(@project.container_registry_repository_url)}
|
||||
|
||||
- if @tags.blank?
|
||||
%li
|
||||
.nothing-here-block No images in Container Registry for this project.
|
||||
|
||||
.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_repository_url)} .
|
||||
%br
|
||||
docker push #{escape_once(@project.container_registry_repository_url)}
|
||||
|
||||
- else
|
||||
.table-holder
|
||||
%table.table.tags
|
||||
|
|
Loading…
Reference in a new issue