Gitlab Enterprise
Published: Wednesday, Feb 19, 2025 Last modified: Wednesday, Feb 19, 2025
Tested on GitLab Enterprise Edition 17.9.0-pre
Docker
Building & Publishing Docker Images to Repo’s container_registry
publish-container:
image: docker:27.3
services:
- docker:27.3-dind
script:
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
- docker build -t $CI_REGISTRY_IMAGE .
- docker push $CI_REGISTRY_IMAGE
Retrieving Docker Images from Repo’s container_registry
image: registry.gitlab.com/$enterprise/$team/$repo:latest
You will see a:
ERROR: Job failed: failed to pull image "$enterprise/$team/$repo:latest" with specified policies [if-not-present]: Error response from daemon: pull access denied for $enterprise/$team/$repo, repository does not exist or may require 'docker login': denied: requested access to the resource is denied (manager.go:251:0s)
If you do not use registry.gitlab.com!
Go binary
.goreleaser.yml:
version: 2
builds:
- env:
- CGO_ENABLED=0
goos:
- linux
gitlab_urls:
use_package_registry: true
use_job_token: true
With the job:
release:
stage: deploy
only:
refs:
- tags
image:
name: goreleaser/goreleaser
entrypoint: [""]
variables:
GIT_DEPTH: 0
GITLAB_TOKEN: $CI_JOB_TOKEN
script:
- goreleaser release