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
fdfd56e2
Commit
fdfd56e2
authored
Feb 05, 2021
by
Lin Jen-Shin
Committed by
Suzanne Selhorn
Feb 05, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Describe how we use Dependency Proxy
parent
9b900fa7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
0 deletions
+19
-0
doc/development/pipelines.md
doc/development/pipelines.md
+19
-0
No files found.
doc/development/pipelines.md
View file @
fdfd56e2
...
...
@@ -632,6 +632,25 @@ for redundancy.
The current version of the build images can be found in the
[
"Used by GitLab section"
](
https://gitlab.com/gitlab-org/gitlab-build-images/blob/master/.gitlab-ci.yml
)
.
### Dependency Proxy
Some of the jobs are using images from Docker Hub, where we also use
`${GITLAB_DEPENDENCY_PROXY}`
as a prefix to the image path, so that we pull
images from our
[
Dependency Proxy
](
../user/packages/dependency_proxy/index.md
)
.
`${GITLAB_DEPENDENCY_PROXY}`
is a group variable defined in
[
`gitlab-org`
](
https://gitlab.com/gitlab-org
)
as
`${CI_DEPENDENCY_PROXY_GROUP_IMAGE_PREFIX}/`
. This means when we use an image
defined as:
```
yaml
image
:
${GITLAB_DEPENDENCY_PROXY}alpine:edge
```
Projects in the
`gitlab-org`
group pull from the Dependency Proxy, while
forks that reside on any other personal namespaces or groups fall back to
Docker Hub unless
`${GITLAB_DEPENDENCY_PROXY}`
is also defined there.
### Default variables
In addition to the
[
predefined variables
](
../ci/variables/predefined_variables.md
)
,
...
...
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