Compare commits

..

1 Commits
v1.1 ... main

Author SHA1 Message Date
cc0469c72c
feat: update build script
All checks were successful
Build and Push Docker Image / build (push) Successful in 7m52s
2024-10-09 21:59:44 +08:00

View File

@ -9,11 +9,5 @@ for dir in builds/*/ ; do
folder_name=$(basename $dir)
# Build the Docker image
docker buildx build --platform linux/amd64,linux/arm64 -t caddy-$folder_name $dir
# Tag the Docker image for pushing to the repository
docker tag caddy-$folder_name linloir/caddy-$folder_name
# Push the Docker image to the repository
docker push linloir/caddy-$folder_name
docker buildx build --push --platform linux/amd64,linux/arm64 -t linloir/caddy-$folder_name $dir
done