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/docker-with-buildx
1 result
Show changes
Commits on Source (7)
......@@ -7,7 +7,7 @@ test docker:
stage: test
image: griefed/docker-with-buildx:latest
services:
- name: griefed/gitlab-ci-cd:1.0.1
- name: griefed/gitlab-ci-cd:1.0.4
alias: docker
variables:
project_name: $CI_PROJECT_NAME
......@@ -21,9 +21,9 @@ test docker:
script:
- docker buildx build
--push
--platform linux/amd64,linux/arm/v7,linux/arm64
--no-cache
--platform linux/amd64,linux/arm64
--tag "index.docker.io/$DOCKERHUB_USER/$DOCKERHUB_REPO:develop"
--tag "$CI_REGISTRY_IMAGE:develop"
--tag "ghcr.io/$DOCKERHUB_USER/$DOCKERHUB_REPO:develop" .
except:
refs:
......@@ -34,7 +34,7 @@ test docker:
release:
needs: ['test docker']
stage: release
image: griefed/gitlab-ci-cd:1.0.1
image: griefed/gitlab-ci-cd:1.0.4
services:
- name: docker:dind
alias: docker
......@@ -53,7 +53,7 @@ release:
build:
stage: build
image: griefed/gitlab-ci-cd:1.0.1
image: griefed/gitlab-ci-cd:1.0.4
services:
- name: docker:dind
alias: docker
......@@ -67,15 +67,13 @@ build:
- docker run --rm --privileged multiarch/qemu-user-static --reset -p yes
- docker buildx create --use --name grfdbuilder
script:
- docker pull "$CI_REGISTRY_IMAGE:develop"
- docker buildx build
--push
--platform linux/amd64,linux/arm/v7,linux/arm64
--cache-from "$CI_REGISTRY_IMAGE:develop"
--tag "$CI_REGISTRY_IMAGE:latest"
--no-cache
--platform linux/amd64,linux/arm64
--tag "ghcr.io/$DOCKERHUB_USER/$DOCKERHUB_REPO:$CI_COMMIT_TAG"
--tag "ghcr.io/$DOCKERHUB_USER/$DOCKERHUB_REPO:latest"
--tag "index.docker.io/$DOCKERHUB_USER/$DOCKERHUB_REPO:$CI_COMMIT_TAG"
--tag "index.docker.io/$DOCKERHUB_USER/$DOCKERHUB_REPO:latest" .
only:
- tags
\ No newline at end of file
- tags
## [2.0.0](https://git.griefed.de/prosper/docker-with-buildx/compare/1.0.1...2.0.0) (2021-11-16)
### 🦊 CI/CD
* Update ci-cd image to 1.0.2 ([b1abe8f](https://git.griefed.de/prosper/docker-with-buildx/commit/b1abe8fbd2a1e2ff76493dbd45f35c77d72fd8e3))
### Other
* **deps:** update griefed/gitlab-ci-cd docker tag to v1.0.3 ([0da4d46](https://git.griefed.de/prosper/docker-with-buildx/commit/0da4d46c6e110a90161883061842e7018fc07504))
### [1.0.1](https://git.griefed.de/prosper/docker-with-buildx/compare/1.0.0...1.0.1) (2021-10-15)
......