FAQ
| This is a
LIVE
service |
Changelog
Skip to content
GitLab
Explore
Sign in
Commits on Source (2)
fix: dind race condition fix
· 7685e010
Dmitrii Unterov
authored
Mar 01, 2024
7685e010
Merge branch 'fix-dind-in-artifact-registry-yml' into 'master'
· 473e58b6
Dmitrii Unterov
authored
Mar 01, 2024
fix: dind race condition fix See merge request
!79
473e58b6
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
473e58b6
...
...
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on
[
Keep a Changelog
](
https://keepachangelog.com/en/1.0.0/
)
,
and this project adheres to
[
Semantic Versioning
](
https://semver.org/spec/v2.0.0.html
)
.
## [3.7.1] - 2024-03-01
### Fixed
-
`artifact-registry.yml`
: added
`before_script`
to fix "docker in docker" service startup.
## [3.7.0] - 2024-01-31
### Added
...
...
auto-devops/artifact-registry.yml
View file @
473e58b6
...
...
@@ -37,6 +37,8 @@
DOCKER_TLS_CERTDIR
:
"
/certs"
DOCKER_TLS_VERIFY
:
1
DOCKER_CERT_PATH
:
"
/certs/client"
before_script
:
-
until docker info > /dev/null 2>&1; do sleep 1; done
script
:
|
# This is adapted from the Auto-DevOps Build job to ensure we're working on the same image!
# See https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Jobs/Build.gitlab-ci.yml
...
...