From 850558221ecbd3301f84eb8635b7ecfd79e37166 Mon Sep 17 00:00:00 2001 From: Manuel Kamper Date: Tue, 20 Aug 2024 20:36:32 +0200 Subject: [PATCH] Dateien nach "/" hochladen --- build_docker.sh | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/build_docker.sh b/build_docker.sh index db77aad..d843a04 100644 --- a/build_docker.sh +++ b/build_docker.sh @@ -3,31 +3,19 @@ set -e GIT_TAG=$1 IMAGE_DESC="Image inpainting tool powered by SOTA AI Model" -GIT_REPO="https://github.com/Sanster/lama-cleaner" +GIT_REPO="https://git.kmpr.at/kamp/IOPaint" echo "Building cpu docker image..." docker buildx build \ --platform linux/amd64 \ --file ./docker/CPUDockerfile \ ---label org.opencontainers.image.title=lama-cleaner \ +--label org.opencontainers.image.title=imagesorter-inpaint \ --label org.opencontainers.image.description="$IMAGE_DESC" \ --label org.opencontainers.image.url=$GIT_REPO \ --label org.opencontainers.image.source=$GIT_REPO \ --label org.opencontainers.image.version=$GIT_TAG \ --build-arg version=$GIT_TAG \ ---tag cwq1913/lama-cleaner:cpu-$GIT_TAG . +--tag kamp/imagesorter-inpaint:cpu-$GIT_TAG . -# echo "Building NVIDIA GPU docker image..." - -docker buildx build \ ---platform linux/amd64 \ ---file ./docker/GPUDockerfile \ ---label org.opencontainers.image.title=lama-cleaner \ ---label org.opencontainers.image.description="$IMAGE_DESC" \ ---label org.opencontainers.image.url=$GIT_REPO \ ---label org.opencontainers.image.source=$GIT_REPO \ ---label org.opencontainers.image.version=$GIT_TAG \ ---build-arg version=$GIT_TAG \ ---tag cwq1913/lama-cleaner:gpu-$GIT_TAG .