Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
gitlab-ce
Commits
ed5359b4
Commit
ed5359b4
authored
Aug 14, 2019
by
GitLab Bot
Browse files
Options
Browse Files
Download
Plain Diff
Automatic merge of gitlab-org/gitlab-ce master
parents
7b3c001e
16f3f33e
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
34 additions
and
0 deletions
+34
-0
doc/administration/container_registry.md
doc/administration/container_registry.md
+34
-0
No files found.
doc/administration/container_registry.md
View file @
ed5359b4
...
...
@@ -669,6 +669,39 @@ To get around this, you can [change the group path](../user/group/index.md#chang
branch name. Another option is to create a
[
push rule
](
../push_rules/push_rules.html
)
to prevent
this at the instance level.
### Image push errors
When getting errors or "retrying" loops in an attempt to push an image but
`docker login`
works fine,
there is likely an issue with the headers forwarded to the registry by NGINX. The default recommended
NGINX configurations should handle this, but it might occur in custom setups where the SSL is
offloaded to a third party reverse proxy.
This problem was discussed in a
[
docker project issue
][
docker-image-push-issue
]
and a simple solution
would be to enable relative urls in the registry.
**For Omnibus installations**
1.
Edit
`/etc/gitlab/gitlab.rb`
:
```
ruby
registry
[
'env'
]
=
{
"REGISTRY_HTTP_RELATIVEURLS"
=>
true
}
```
1.
Save the file and
[
reconfigure GitLab
][]
for the changes to take effect.
**For installations from source**
1.
Edit the YML configuration file you created when you
[
deployed the registry
][
registry-deploy
]
. Add the following snippet:
```
yaml
http
:
relativeurls
:
true
```
1.
Restart the registry for the changes to take affect.
[
ce-18239
]:
https://gitlab.com/gitlab-org/gitlab-ce/issues/18239
[
docker-insecure-self-signed
]:
https://docs.docker.com/registry/insecure/#use-self-signed-certificates
[
reconfigure gitlab
]:
restart_gitlab.md#omnibus-gitlab-reconfigure
...
...
@@ -687,3 +720,4 @@ this at the instance level.
[
new-domain
]:
#configure-container-registry-under-its-own-domain
[
notifications-config
]:
https://docs.docker.com/registry/notifications/
[
registry-notifications-config
]:
https://docs.docker.com/registry/configuration/#notifications
[
docker-image-push-issue
]:
https://github.com/docker/distribution/issues/970
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment