mirror of
https://github.com/easydiffusion/easydiffusion.git
synced 2024-11-08 01:14:03 +01:00
16 lines
374 B
Bash
Executable File
16 lines
374 B
Bash
Executable File
#!/bin/bash
|
|
|
|
IMAGE_NAME=$1
|
|
|
|
if [ -z "$IMAGE_NAME" ]; then
|
|
IMAGE_NAME="r8.im/stability-ai/stable-diffusion@sha256:06eb78b36068500c616a7f33c15e6fa40404f8e14b5bfad57ebe0c7fe0f6bdf1"
|
|
fi
|
|
|
|
echo "Using docker image $IMAGE_NAME"
|
|
docker run --name sd -d -p 5000:5000 --gpus all $IMAGE_NAME
|
|
|
|
echo "Please open http://localhost:8000 in your favorite web browser!"
|
|
|
|
uvicorn main:app
|
|
|