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
ba820d4e
Commit
ba820d4e
authored
Jun 03, 2021
by
Greg Myers
Committed by
Kati Paizee
Jun 03, 2021
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add use local registry option to doc/topics/autodevops/customize.md
parent
631c7c83
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
doc/topics/autodevops/customize.md
doc/topics/autodevops/customize.md
+21
-0
No files found.
doc/topics/autodevops/customize.md
View file @
ba820d4e
...
...
@@ -255,6 +255,27 @@ base template is migrated to use the `rules` syntax.
For users who cannot migrate just yet, you can alternatively pin your templates to
the
[
GitLab 12.10 based templates
](
https://gitlab.com/gitlab-org/auto-devops-v12-10
)
.
## Use images hosted in a local Docker registry
You can configure many Auto DevOps jobs to run in an
[
offline environment
](
../../user/application_security/offline_deployments/index.md
)
:
1.
Copy the required Auto DevOps Docker images from Docker Hub and
`registry.gitlab.com`
to their local GitLab container registry.
1.
After the images are hosted and available in a local registry, edit
`.gitlab-ci.yml`
to point to the locally-hosted images. For example:
```
yaml
include
:
-
template
:
Auto-DevOps.gitlab-ci.yml
variables
:
REGISTRY_URL
:
"
registry.gitlab.example"
build
:
image
:
"
$REGISTRY_URL/docker/auto-build-image:v0.6.0"
services
:
-
name
:
"
$REGISTRY_URL/greg/docker/docker:20.10.6-dind"
command
:
[
'
--tls=false'
,
'
--host=tcp://0.0.0.0:2375'
]
```
## PostgreSQL database support
To support applications requiring a database,
...
...
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