From 6a69d92ef79b3041c6ceb5c177c9dc3dca149bb6 Mon Sep 17 00:00:00 2001 From: Yoink3000 Date: Fri, 14 Jun 2024 22:53:20 +0800 Subject: [PATCH 1/2] suppress setup script logs --- README.md | 2 ++ build/setup.sh | 14 ++++++++++---- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 847cd2f..ae43980 100644 --- a/README.md +++ b/README.md @@ -24,6 +24,8 @@ A docker image to automatically setup everything you needed to run SD Next in a * ### Runpod You can deploy this image in [Runpod](https://runpod.io?ref=2v9nfixx) with this [template](https://runpod.io/console/deploy?template=joh7y33050&ref=2v9nfixx)
The template use cu124 version, so please remember to use the pod that support CUDA 12.4 +* ### Vast.ai +coming soon... * ### Local Run the following command in your terminal: ```bash diff --git a/build/setup.sh b/build/setup.sh index 4f45d09..68e9fbc 100644 --- a/build/setup.sh +++ b/build/setup.sh @@ -1,13 +1,19 @@ #!/usr/bin/env bash -apt update -y -apt upgrade -y +echo Updating apt... +apt update -y > /dev/null + +echo Upgrading apt... +apt upgrade -y > /dev/null + +echo Installing apt packages... apt install -y git \ python3.10 \ pythonpy \ python3.10-venv \ python3-pip \ curl \ - wget + wget > /dev/null -pip install jupyterlab \ No newline at end of file +echo Installing Jupyter Lab... +pip install jupyterlab > /dev/null \ No newline at end of file From dc690d92caf488d85bb3968e02f97cba71ecca8e Mon Sep 17 00:00:00 2001 From: Yoink3000 Date: Fri, 14 Jun 2024 22:57:36 +0800 Subject: [PATCH 2/2] added missing y --- docker-bake.hcl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker-bake.hcl b/docker-bake.hcl index 0b196e9..77a8ca7 100644 --- a/docker-bake.hcl +++ b/docker-bake.hcl @@ -3,7 +3,7 @@ variable "REGISTRY" { } variable "IMAGE" { - default = "yoink3000/sd-next-docker" + default = "yoinky3000/sd-next-docker" } variable "RELEASE" {