confyui / entrypoint.sh
fengmiguoji's picture
Create entrypoint.sh
1dec73c verified
raw
history blame contribute delete
355 Bytes
#!/bin/bash
# 执行 docker run 命令,启动 BizyAir 镜像
docker run -d \
-p 8188:8188 \
-v "models:/app/models" \
-v "input:/app/input" \
-v "temp:/app/output/temp" \
-v "output:/app/output" \
-v "user:/app/user" \
--name comfyui-container \
wwwzhouhui569/comfyui_bizyair:v0.4.0
# 保持容器运行
tail -f /dev/null