Spaces:
Configuration error
Configuration error
File size: 400 Bytes
0ce60a9 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#!/usr/bin/env bash
docker build -t stableswarmui .
# add "--network=host" if you want to access other services on the host network (eg a separated comfy instance)
docker run -it \
--name stableswarmui \
--mount source=swarmdata,target=/Data \
--mount source=swarmbackend,target=/dlbackend \
-v ./Models:/Models \
-v ./Output:/Output \
--gpus=all -p 7801:7801 stableswarmui
|