diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 55c3c80e1db6430b3bb4936593417efeb5bcd77e..42d549c7ff546478b9dcce07d4603f330cd847bd 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -1,7 +1,7 @@ --- ### SET IN CI VARIABLES # variables: -# VERSION: "1.0.0" +# VERSION: "1.6.0" # IMAGE_NAME: "registry.example.com/stable-diffusion-webui" stages: @@ -11,7 +11,7 @@ stages: build_image: stage: build script: - - docker build --build-arg VERSION=${VERSION} -t ${IMAGE_NAME}:${VERSION} . + - docker build --progress plain --build-arg VERSION=${VERSION} -t ${IMAGE_NAME}:${VERSION} . push_image: stage: push diff --git a/Dockerfile b/Dockerfile index 9502706dcf41405bfffeb76cb248de1bdee917f1..528ed9ad7cbaae930e3e7976075d2255ef882967 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM nvidia/cuda:11.8.0-base-ubuntu22.04 ARG VERSION -ENV VERSION=1.5.1 +ENV VERSION=1.6.0 ENV DEBIAN_FRONTEND=noninteractive RUN apt-get -qq update -y \ diff --git a/README.md b/README.md index 30816563c587fcc34fb513e9d5f945b78200e7a6..d2d72a90dc20c6d1775a83eb4dc9ec32e3cc6b9c 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ This builds a Docker image containing the Stable Diffusion WebUI by AUTOMATIC111 ## Build the image (and optionally push it to your registry) Set the version and image name to use: ``` -export VERSION="1.5.1" +export VERSION="1.x.y" export IMAGE_NAME=registry.example.com/stable-diffusion-webui ``` Build the image and also add the `latest` tag: