Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
  • prosper/gitlab-ci-cd
1 result
Show changes
Commits on Source (6)
...@@ -4,10 +4,10 @@ stages: ...@@ -4,10 +4,10 @@ stages:
- build - build
services: services:
- name: docker.griefed.dev/griefed/gitlab-ci-cd:2.2.12 - name: ghcr.io/griefed/gitlab-ci-cd:2.2.12
alias: docker alias: docker
image: docker.griefed.dev/griefed/gitlab-ci-cd:2.2.12 image: ghcr.io/griefed/gitlab-ci-cd:2.2.12
variables: variables:
project_name: $CI_PROJECT_NAME project_name: $CI_PROJECT_NAME
...@@ -33,7 +33,7 @@ test docker: ...@@ -33,7 +33,7 @@ test docker:
- docker buildx build - docker buildx build
--push --push
--no-cache --no-cache
--platform linux/amd64,linux/arm64,linux/arm/v7 --platform linux/amd64,linux/arm64
--tag "index.docker.io/$DOCKERHUB_USER/$DOCKERHUB_REPO:develop-$CI_COMMIT_SHORT_SHA" --tag "index.docker.io/$DOCKERHUB_USER/$DOCKERHUB_REPO:develop-$CI_COMMIT_SHORT_SHA"
--tag "ghcr.io/$DOCKERHUB_USER/$DOCKERHUB_REPO:develop-$CI_COMMIT_SHORT_SHA" . --tag "ghcr.io/$DOCKERHUB_USER/$DOCKERHUB_REPO:develop-$CI_COMMIT_SHORT_SHA" .
except: except:
......
...@@ -19,7 +19,7 @@ RUN \ ...@@ -19,7 +19,7 @@ RUN \
chmod a+x \ chmod a+x \
/discord.sh /discord.sh
FROM mazzolino/docker:20.10.12-dind FROM docker:27.5.0-dind
LABEL maintainer="Griefed <griefed@griefed.de>" LABEL maintainer="Griefed <griefed@griefed.de>"
LABEL description="Provides GitLab Semantic Release, buildx, JDK 8, NodeJS for Griefed's GitLab CI/CD pipelines." LABEL description="Provides GitLab Semantic Release, buildx, JDK 8, NodeJS for Griefed's GitLab CI/CD pipelines."
...@@ -34,7 +34,7 @@ RUN \ ...@@ -34,7 +34,7 @@ RUN \
apk update && \ apk update && \
apk upgrade && \ apk upgrade && \
apk add --no-cache \ apk add --no-cache \
--repository https://dl-cdn.alpinelinux.org/alpine/v3.17/main/ \ --repository https://dl-cdn.alpinelinux.org/alpine/v3.20/main/ \
nodejs \ nodejs \
npm && \ npm && \
apk add --no-cache \ apk add --no-cache \
......