Skip to content

Commit

Permalink
Merge pull request #1 from Yoinky3000/dev
Browse files Browse the repository at this point in the history
Merge from dev
  • Loading branch information
Yoinky3000 authored Jun 14, 2024
2 parents 8add99f + dc690d9 commit 5e0b488
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)<br>
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
Expand Down
14 changes: 10 additions & 4 deletions build/setup.sh
Original file line number Diff line number Diff line change
@@ -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
echo Installing Jupyter Lab...
pip install jupyterlab > /dev/null
2 changes: 1 addition & 1 deletion docker-bake.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ variable "REGISTRY" {
}

variable "IMAGE" {
default = "yoink3000/sd-next-docker"
default = "yoinky3000/sd-next-docker"
}

variable "RELEASE" {
Expand Down

0 comments on commit 5e0b488

Please sign in to comment.