You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At first running containers failed with the following error:
x11docker ERROR: start_container(): Did not receive PID of PID1 in container.
Maybe the container immediately stopped for unknown reasons.
Just in case, check if host and image architecture are compatible:
Host architecture: amd64 (x86_64), image architecture: amd64.
After enabling verbose I found that the script repeatedly checks if any PID is received.
After some attempts I got one running successfully out of pure luck.
I found out AFTER the window appeared and BEFORE anything shows up in the window, if I suspend the x11docker process for some time, during which I guess docker is starting, and I run fg to bring the process back, the container can startup normally.
Is there an option to manually adjust the timeout?
I guess we should use some other mechanisms to determine if a docker container have been started up or not, instead of using PID and a timeout?
The text was updated successfully, but these errors were encountered:
I've came to a pretty intriguing bug up here:
At first running containers failed with the following error:
After enabling verbose I found that the script repeatedly checks if any PID is received.
After some attempts I got one running successfully out of pure luck.
I found out AFTER the window appeared and BEFORE anything shows up in the window, if I suspend the x11docker process for some time, during which I guess docker is starting, and I run fg to bring the process back, the container can startup normally.
Is there an option to manually adjust the timeout?
I guess we should use some other mechanisms to determine if a docker container have been started up or not, instead of using PID and a timeout?
The text was updated successfully, but these errors were encountered: