NO Region Pods keeping block when start my docker image.
NO Region Pods blocking when start my private docker image.
12 Replies
@lixianwei What do u mean block?
Are u saying other regions work then?
What template are u using?
US Region is ok.
I create a template based on official stable-diffision-webui template.
When i start my template, it will be blocking.
seems to be stuck in
rsync -au --remove-source-files /stable-diffusion-webui/
.stuck in here.
ID: nly52it9kpubh9
Its not stuck, you need to wait like it says. Regions with network storage such as NO region take much longer to sync due to the slow speed of the network storage disk.
Does it take several hours? The final files are also incomplete, indicating that some files are missing.
Its incomplete because you need to wait for it to finish. I don't know how it can be any more clear when it says this.
ID: luz19rtas21839
can you see my log?
Which template is this? Looks like its broken.
I can't see your logs, I don't work for RunPod.
this is my private docker image.
same image can work in us region.
You are probably putting stuff into /workspace in your Docker image which can't work in regions with network storage. You have to put it somewhere else, like
/
for example and then rsync it to /workspace
when the container starts.
Like this one is doing.got it, thanks for your patient explanation.👍