how to get this to work on cpu only version in docker, #8534
Unanswered
littlelostsoul
asked this question in
Q&A
Replies: 1 comment
-
Hi, try to add --cpu flag on server start command python3 main.py --listen 0.0.0.0 --cpu Also try to manage cpu, ram usage stuff in your docker compose file on service description level like this deploy:
resources:
limits:
cpus: '${CPU_MAX_LIMIT:-4}'
memory: '${RAM_MAX_LIMIT:-16G}'
reservations:
cpus: '${CPU_MIN_LIMIT:-1}'
memory: '${RAM_MIN_LIMIT:-10G}'
memswap_limit: '${MEMORY_SWAP_MAX_LIMIT:-16G}' also check this link https://docs.comfy.org/interface/settings/server-config#vram-management-mode and docker compose configs: https://github.com/YanWenKun/ComfyUI-Docker |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
how do i get this to work on cpu version instead of gpu? it currently keeps restarting on its own in docker. plz guide
Beta Was this translation helpful? Give feedback.
All reactions