From cc740b6866cd38ed6b002083993baf5499649b3d Mon Sep 17 00:00:00 2001
From: Jan Grewe <jan@faked.org>
Date: Wed, 20 Sep 2023 17:57:51 +0200
Subject: [PATCH] SD 1.6.0

---
 .gitlab-ci.yml | 4 ++--
 Dockerfile     | 2 +-
 README.md      | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 55c3c80..42d549c 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 9502706..528ed9a 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 3081656..d2d72a9 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:
-- 
GitLab