Spaces:
Paused
Paused
Anatole RAIMBERT commited on
Commit ·
899abd8
1
Parent(s): 9967d2a
[EVOL] Edit docker compose to run on port 8000
Browse files- README.md +4 -3
- docker-compose.yml +1 -1
README.md
CHANGED
|
@@ -22,9 +22,10 @@ This is a simple example of how to run ComfyUI on a nvidia cuda machine using Do
|
|
| 22 |
### Local
|
| 23 |
|
| 24 |
1. Clone the repository
|
| 25 |
-
2.
|
| 26 |
-
3.
|
| 27 |
-
|
|
|
|
| 28 |
|
| 29 |
### Hugging Face Spaces
|
| 30 |
|
|
|
|
| 22 |
### Local
|
| 23 |
|
| 24 |
1. Clone the repository
|
| 25 |
+
2. If you don't have any GPU, switch to branch `cpu-only`
|
| 26 |
+
3. Run `docker compose up` in the root directory of the repository
|
| 27 |
+
4. Open a browser and navigate to :
|
| 28 |
+
- ComfyUI: `http://localhost:8000`
|
| 29 |
|
| 30 |
### Hugging Face Spaces
|
| 31 |
|
docker-compose.yml
CHANGED
|
@@ -6,7 +6,7 @@ services:
|
|
| 6 |
environment:
|
| 7 |
- NVIDIA_VISIBLE_DEVICES=all
|
| 8 |
ports:
|
| 9 |
-
- "
|
| 10 |
deploy:
|
| 11 |
resources:
|
| 12 |
reservations:
|
|
|
|
| 6 |
environment:
|
| 7 |
- NVIDIA_VISIBLE_DEVICES=all
|
| 8 |
ports:
|
| 9 |
+
- "8000:7860"
|
| 10 |
deploy:
|
| 11 |
resources:
|
| 12 |
reservations:
|