Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
U
ur_simple_control
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Marko Guberina
ur_simple_control
Commits
a959fcff
Verified
Commit
a959fcff
authored
7 months ago
by
Anton Tetov Johansson
Browse files
Options
Downloads
Patches
Plain Diff
use podman in shell executor and control docker registry
parent
af1a4009
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitignore
+1
-0
1 addition, 0 deletions
.gitignore
.gitlab-ci.yml
+12
-32
12 additions, 32 deletions
.gitlab-ci.yml
with
13 additions
and
32 deletions
.gitignore
+
1
−
0
View file @
a959fcff
...
...
@@ -3,3 +3,4 @@ build/
**/.build
**/build
**__pycache__
.vscode/
This diff is collapsed.
Click to expand it.
.gitlab-ci.yml
+
12
−
32
View file @
a959fcff
# 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:cli
stage
:
build
services
:
-
docker:dind
variables
:
DOCKER_IMAGE_NAME
:
$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
before_script
:
-
echo "$CI_REGISTRY_PASSWORD" | docker login $CI_REGISTRY -u $CI_REGISTRY_USER --password-stdin || echo failed
# All branches are tagged with $DOCKER_IMAGE_NAME (defaults to commit ref slug)
# Default branch is also tagged with `latest`
DOCKER_REGISTRY
:
docker.control.lth.se
CI_REGISTRY_IMAGE
:
$DOCKER_REGISTRY/$CI_PROJECT_NAMESPACE/$CI_PROJECT_NAME
podman-build
:
image
:
quay.io/podman/stable
# tags:
# - docker
stage
:
build
script
:
-
docker build --pull -t "$DOCKER_IMAGE_NAME" .
-
docker push "$DOCKER_IMAGE_NAME"
-
podman login -u "$DOCKER_REGISTRY_USER" -p "$DOCKER_REGISTRY_PASSWORD" "$DOCKER_REGISTRY"
-
podman build -t "$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG" .
-
podman push "$CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG"
-
|
if [[ "$CI_COMMIT_BRANCH" == "$CI_DEFAULT_BRANCH" ]]; then
docker
tag "$
DOCKER_IMAGE_NAME
" "$CI_REGISTRY_IMAGE:latest"
docker
push "$CI_REGISTRY_IMAGE:latest"
podman
tag "$
CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
" "$CI_REGISTRY_IMAGE:latest"
podman
push "$CI_REGISTRY_IMAGE:latest"
fi
# Run this job in a branch where a Dockerfile exists
rules
:
-
if
:
$CI_COMMIT_BRANCH
exists
:
-
Dockerfile
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