From 8f11207d72e1390c9b0e9f4c398e5e582680198c Mon Sep 17 00:00:00 2001 From: TianLun Song Date: Sun, 18 Aug 2024 01:04:22 +0800 Subject: [PATCH 1/3] fix push docker prefix --- .github/workflows/deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 2051680b4..29deceb74 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -24,7 +24,7 @@ jobs: context: . file: ./Dockerfile.docs push: true - tags: dokploy/docs:latest + tags: songtianlun/dokploy-docs:latest platforms: linux/amd64 build-and-push-image-website: @@ -46,5 +46,5 @@ jobs: context: . file: ./Dockerfile.website push: true - tags: dokploy/website:latest + tags: songtianlun/dokploy-website:latest platforms: linux/amd64 From a3e23d54d8ef9b4f7045e4055866e14e0cdff868 Mon Sep 17 00:00:00 2001 From: TianLun Song Date: Sun, 18 Aug 2024 01:09:09 +0800 Subject: [PATCH 2/3] fix docker push prefix --- .circleci/config.yml | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9eca0514f..9f3ee6f94 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -21,7 +21,7 @@ jobs: TAG="canary" fi docker build --platform linux/amd64 -t dokploy/dokploy:${TAG}-amd64 . - docker push dokploy/dokploy:${TAG}-amd64 + docker push songtianlun/dokploy:${TAG}-amd64 build-arm64: machine: @@ -44,7 +44,7 @@ jobs: TAG="canary" fi docker build --platform linux/arm64 -t dokploy/dokploy:${TAG}-arm64 . - docker push dokploy/dokploy:${TAG}-arm64 + docker push songtianlun/dokploy:${TAG}-arm64 combine-manifests: docker: @@ -62,21 +62,21 @@ jobs: echo $VERSION TAG="latest" - docker manifest create dokploy/dokploy:${TAG} \ - dokploy/dokploy:${TAG}-amd64 \ - dokploy/dokploy:${TAG}-arm64 - docker manifest push dokploy/dokploy:${TAG} + docker manifest create songtianlun/dokploy:${TAG} \ + songtianlun/dokploy:${TAG}-amd64 \ + songtianlun/dokploy:${TAG}-arm64 + docker manifest push songtianlun/dokploy:${TAG} - docker manifest create dokploy/dokploy:${VERSION} \ - dokploy/dokploy:${TAG}-amd64 \ - dokploy/dokploy:${TAG}-arm64 - docker manifest push dokploy/dokploy:${VERSION} + docker manifest create songtianlun/dokploy:${VERSION} \ + songtianlun/dokploy:${TAG}-amd64 \ + songtianlun/dokploy:${TAG}-arm64 + docker manifest push songtianlun/dokploy:${VERSION} else TAG="canary" - docker manifest create dokploy/dokploy:${TAG} \ - dokploy/dokploy:${TAG}-amd64 \ - dokploy/dokploy:${TAG}-arm64 - docker manifest push dokploy/dokploy:${TAG} + docker manifest create songtianlun/dokploy:${TAG} \ + songtianlun/dokploy:${TAG}-amd64 \ + songtianlun/dokploy:${TAG}-arm64 + docker manifest push songtianlun/dokploy:${TAG} fi workflows: From 69709232531a8216c79aeb3216d764048d5a91fd Mon Sep 17 00:00:00 2001 From: TianLun Song Date: Sun, 18 Aug 2024 01:20:24 +0800 Subject: [PATCH 3/3] fix docker name --- .circleci/config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 9f3ee6f94..d0cd1177b 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -20,7 +20,7 @@ jobs: else TAG="canary" fi - docker build --platform linux/amd64 -t dokploy/dokploy:${TAG}-amd64 . + docker build --platform linux/amd64 -t songtianlun/dokploy:${TAG}-amd64 . docker push songtianlun/dokploy:${TAG}-amd64 build-arm64: @@ -43,7 +43,7 @@ jobs: else TAG="canary" fi - docker build --platform linux/arm64 -t dokploy/dokploy:${TAG}-arm64 . + docker build --platform linux/arm64 -t songtianlun/dokploy:${TAG}-arm64 . docker push songtianlun/dokploy:${TAG}-arm64 combine-manifests: