Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
mdata_app
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Machine Data
mdata_app
Commits
e649393b
Commit
e649393b
authored
8 months ago
by
Leah Tacke genannt Unterberg
Browse files
Options
Downloads
Plain Diff
Merge branch 'master' into release
# Conflicts: # .gitlab-ci.yml
parents
31b819a0
13f5158f
No related branches found
No related tags found
No related merge requests found
Pipeline
#479451
failed
8 months ago
Stage: build
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
.gitlab-ci.yml
+9
-23
9 additions, 23 deletions
.gitlab-ci.yml
with
9 additions
and
23 deletions
.gitlab-ci.yml
+
9
−
23
View file @
e649393b
# This file is a template, and might need editing before it works on your project.
# To contribute improvements to CI/CD templates, please follow the Development guide at:
# https://docs.gitlab.com/ee/development/cicd/templates.html
# This specific template is located at:
# https://gitlab.com/gitlab-org/gitlab/-/blob/master/lib/gitlab/ci/templates/Docker.gitlab-ci.yml
# Build a Docker image with CI/CD and push to the GitLab registry.
# Docker-in-Docker documentation: https://docs.gitlab.com/ee/ci/docker/using_docker_build.html
#
# This template uses one generic job with conditional builds
# for the default branch and all other (MR) branches.
docker-build
:
# Use the official docker image.
image
:
docker:
latest
image
:
docker:
cli
stage
:
build
services
:
-
docker:dind
variables
:
DOCKER_IMAGE_NAME
:
$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
before_script
:
-
docker login -u "$CI_REGISTRY_USER" -p "$CI_REGISTRY_PASSWORD" $CI_REGISTRY
#
Default branch leaves tag empty (= latest ta
g)
#
All other
branch
e
s a
re
tagged with
the escaped branch name (commit ref slug)
#
All branches are tagged with $DOCKER_IMAGE_NAME (defaults to commit ref slu
g)
#
Default
branch
i
s a
lso
tagged with
`latest`
script
:
-
docker build --pull -t "$DOCKER_IMAGE_NAME" .
-
docker push "$DOCKER_IMAGE_NAME"
-
|
if [[ "$CI_COMMIT_BRANCH" == "$CI_DEFAULT_BRANCH" ]]; then
tag=""
echo "Running on default branch '$CI_DEFAULT_BRANCH': tag = 'latest'"
else
tag=":$CI_COMMIT_REF_SLUG"
echo "Running on branch '$CI_COMMIT_BRANCH': tag = $tag"
docker tag "$DOCKER_IMAGE_NAME" "$CI_REGISTRY_IMAGE:latest"
docker push "$CI_REGISTRY_IMAGE:latest"
fi
-
docker build --pull -t "$CI_REGISTRY_IMAGE${tag}" .
-
docker push "$CI_REGISTRY_IMAGE${tag}"
# Run this job in a release branch where a Dockerfile exists
rules
:
-
if
:
$CI_COMMIT_BRANCH == "release"
exists
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment