You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
378 B
12 lines
378 B
2 years ago
|
#!/bin/bash
|
||
|
echo "Container Started"
|
||
|
export PYTHONUNBUFFERED=1
|
||
|
source /workspace/stable-diffusion-webui/venv/bin/activate
|
||
|
cd /workspace/stable-diffusion-webui
|
||
|
echo "starting api"
|
||
|
python webui.py --port 3000 --nowebui --api --xformers --ckpt /workspace/stable-diffusion-webui/models/Stable-diffusion/model.safetensors &
|
||
|
|
||
|
echo "starting worker"
|
||
|
cd /workspace
|
||
|
python -u handler.py
|