mirror of
https://github.com/AbdBarho/stable-diffusion-webui-docker.git
synced 2026-02-04 06:34:19 +01:00
8 lines
211 B
Bash
8 lines
211 B
Bash
|
|
#!/bin/bash
|
||
|
|
if [ "$#" -ne "1" ]
|
||
|
|
then
|
||
|
|
echo "usage: $ ./run.sh [ download | auto | auto-cpu | invoke | sygil | sygil-sl ]"
|
||
|
|
else
|
||
|
|
USER_ID=$(id -u):$(id -g) docker compose --profile $1 up --build
|
||
|
|
fi
|