fix:修复页面样式

This commit is contained in:
Daniel
2026-04-14 12:05:56 +08:00
parent 508c28ce31
commit 89b21dd314
36 changed files with 2866 additions and 495 deletions

View File

@@ -10,15 +10,17 @@ services:
- PORT=3000
volumes:
- ./:/app
# Keep dependencies inside container volume to avoid host FS read issues on macOS.
- /app/server/node_modules
ports:
- "3000:3000"
# Default: Docker Hub (anonymous pull). GHCR comfyanonymous image often returns "denied" without login.
# Override: COMFYUI_IMAGE=ghcr.io/... after `docker login ghcr.io`
# Default: use domestic mirror to speed up pulls in CN networks.
# Override with COMFYUI_IMAGE to use another registry/image.
comfyui:
# CPU-friendly default image for non-NVIDIA development machines.
# Override with COMFYUI_IMAGE to switch back to a GPU image.
image: ${COMFYUI_IMAGE:-ardenius/comfyui-cpu:latest}
image: ${COMFYUI_IMAGE:-docker.1ms.run/ardenius/comfyui-cpu:latest}
# Force bind to all interfaces so other containers (and `check_comfy`) can reach it.
# Works with the default ardenius/comfyui-cpu image layout (/ComfyUI-cpu/main.py).
command: ${COMFYUI_COMMAND:-python3 /ComfyUI-cpu/main.py --cpu --cpu-vae --listen 0.0.0.0 --port 8188}