|
@@ -67,7 +67,7 @@ function recreate_builder() {
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
# Check if docker is ready for cross-plaform builds, if not, recreate builder
|
|
# Check if docker is ready for cross-plaform builds, if not, recreate builder
|
|
|
-docker buildx use xbuilder 2>&1 >/dev/null || create_builder
|
|
|
|
|
|
|
+docker buildx use xbuilder >/dev/null 2>&1 || create_builder
|
|
|
check_platforms || (recreate_builder && check_platforms) || exit 1
|
|
check_platforms || (recreate_builder && check_platforms) || exit 1
|
|
|
|
|
|
|
|
|
|
|
|
@@ -80,20 +80,20 @@ echo "[+] Building archivebox:$VERSION docker image..."
|
|
|
# docker build . --no-cache -t archivebox-dev \
|
|
# docker build . --no-cache -t archivebox-dev \
|
|
|
# replace --load with --push to deploy
|
|
# replace --load with --push to deploy
|
|
|
docker buildx build --platform "$SELECTED_PLATFORMS" --load . \
|
|
docker buildx build --platform "$SELECTED_PLATFORMS" --load . \
|
|
|
- # -t archivebox/archivebox \
|
|
|
|
|
-t archivebox/archivebox:$TAG_NAME \
|
|
-t archivebox/archivebox:$TAG_NAME \
|
|
|
|
|
+ -t archivebox/archivebox:$GIT_SHA \
|
|
|
|
|
+ -t nikisweeting/archivebox:$TAG_NAME \
|
|
|
|
|
+ -t nikisweeting/archivebox:$GIT_SHA \
|
|
|
|
|
+ -t ghcr.io/archivebox/archivebox/archivebox:$TAG_NAME \
|
|
|
|
|
+ -t ghcr.io/archivebox/archivebox/archivebox:$GIT_SHA
|
|
|
|
|
+ # -t archivebox/archivebox \
|
|
|
# -t archivebox/archivebox:$VERSION \
|
|
# -t archivebox/archivebox:$VERSION \
|
|
|
# -t archivebox/archivebox:$SHORT_VERSION \
|
|
# -t archivebox/archivebox:$SHORT_VERSION \
|
|
|
- -t archivebox/archivebox:$GIT_SHA \
|
|
|
|
|
# -t archivebox/archivebox:latest \
|
|
# -t archivebox/archivebox:latest \
|
|
|
# -t nikisweeting/archivebox \
|
|
# -t nikisweeting/archivebox \
|
|
|
- -t nikisweeting/archivebox:$TAG_NAME \
|
|
|
|
|
# -t nikisweeting/archivebox:$VERSION \
|
|
# -t nikisweeting/archivebox:$VERSION \
|
|
|
# -t nikisweeting/archivebox:$SHORT_VERSION \
|
|
# -t nikisweeting/archivebox:$SHORT_VERSION \
|
|
|
- -t nikisweeting/archivebox:$GIT_SHA \
|
|
|
|
|
# -t nikisweeting/archivebox:latest \
|
|
# -t nikisweeting/archivebox:latest \
|
|
|
- -t ghcr.io/archivebox/archivebox/archivebox:$TAG_NAME \
|
|
|
|
|
# -t ghcr.io/archivebox/archivebox/archivebox:$VERSION \
|
|
# -t ghcr.io/archivebox/archivebox/archivebox:$VERSION \
|
|
|
# -t ghcr.io/archivebox/archivebox/archivebox:$SHORT_VERSION \
|
|
# -t ghcr.io/archivebox/archivebox/archivebox:$SHORT_VERSION \
|
|
|
- -t ghcr.io/archivebox/archivebox/archivebox:$GIT_SHA \
|
|
|
|
|
# -t ghcr.io/archivebox/archivebox/archivebox:latest
|
|
# -t ghcr.io/archivebox/archivebox/archivebox:latest
|