Remove server.sh, since 'docker-compose up' replaces it

This commit is contained in:
cmdr2 2022-08-24 21:45:46 +05:30
parent db79d86ad4
commit 79ead61312

View File

@ -1,15 +0,0 @@
#!/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