Spaces:
Configuration error
Configuration error
scribbyotx
commited on
Commit
•
ac45ae8
1
Parent(s):
c602d32
Update Dockerfile
Browse files- Dockerfile +8 -18
Dockerfile
CHANGED
@@ -1,21 +1,11 @@
|
|
|
|
1 |
docker run -d -p 5000:5000 --gpus=all r8.im/xarty8932/dream@sha256:5e3c45aa9c9896f86634175309490225e5a379a6a81c39abbf55eab2cd16b657
|
|
|
|
|
|
|
|
|
|
|
2 |
curl -s -X POST \
|
3 |
-H "Content-Type: application/json" \
|
4 |
-
-d
|
5 |
-
|
6 |
-
"width": 1024,
|
7 |
-
"height": 1024,
|
8 |
-
"prompt": "realstic Prompt: \\"A detailed portrait of a middle-aged man with a rugged face, wearing a leather jacket. He has piercing blue eyes and a determined expression. The background is a windswept desert landscape.\\" - @Gary Makinson (fast)\\n",
|
9 |
-
"refine": "no_refiner",
|
10 |
-
"scheduler": "K_EULER",
|
11 |
-
"lora_scale": 0.6,
|
12 |
-
"num_outputs": 1,
|
13 |
-
"guidance_scale": 7.5,
|
14 |
-
"apply_watermark": false,
|
15 |
-
"high_noise_frac": 0.8,
|
16 |
-
"negative_prompt": "",
|
17 |
-
"prompt_strength": 0.8,
|
18 |
-
"num_inference_steps": 50
|
19 |
-
}
|
20 |
-
}' \
|
21 |
-
http://localhost:5000/predictions
|
|
|
1 |
+
# Run the Docker container
|
2 |
docker run -d -p 5000:5000 --gpus=all r8.im/xarty8932/dream@sha256:5e3c45aa9c9896f86634175309490225e5a379a6a81c39abbf55eab2cd16b657
|
3 |
+
|
4 |
+
# Wait a few seconds for the container to start
|
5 |
+
sleep 5
|
6 |
+
|
7 |
+
# Send a POST request using curl
|
8 |
curl -s -X POST \
|
9 |
-H "Content-Type: application/json" \
|
10 |
+
-d '{"key1":"value1", "key2":"value2"}' \
|
11 |
+
http://localhost:5000/your-endpoint
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|