Merge remote-tracking branch 'my/canary' into canary

This commit is contained in:
songtianlun 2024-08-18 01:40:34 +08:00
commit eb219221be
2 changed files with 18 additions and 18 deletions

View File

@ -20,8 +20,8 @@ jobs:
else
TAG="canary"
fi
docker build --platform linux/amd64 -t dokploy/dokploy:${TAG}-amd64 .
docker push dokploy/dokploy:${TAG}-amd64
docker build --platform linux/amd64 -t songtianlun/dokploy:${TAG}-amd64 .
docker push songtianlun/dokploy:${TAG}-amd64
build-arm64:
machine:
@ -43,8 +43,8 @@ jobs:
else
TAG="canary"
fi
docker build --platform linux/arm64 -t dokploy/dokploy:${TAG}-arm64 .
docker push dokploy/dokploy:${TAG}-arm64
docker build --platform linux/arm64 -t songtianlun/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:

View File

@ -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