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
Sometimes you want to stop/restart the container to not loose post-run changes to it i.e. installed s/w, firefox addons, tool tweaking, ...
Currently this is not possible as Xvfb will already have started and save state in a lockfile.
Workaround is to add the following at the beginning of entrypoint.sh: sudo rm -fr /tmp/.X*
Not elegant and incomplete but does the job.
The text was updated successfully, but these errors were encountered:
If you have an existing container you want to start, after you edit this file, make sure to set the permissions back, otherwise the container will not even attempt to start. I was able to make this update in Docker Desktop, and it solved my issue of not being able to restart.
Sometimes you want to stop/restart the container to not loose post-run changes to it i.e. installed s/w, firefox addons, tool tweaking, ...
Currently this is not possible as
Xvfb
will already have started and save state in a lockfile.Workaround is to add the following at the beginning of
entrypoint.sh
:sudo rm -fr /tmp/.X*
Not elegant and incomplete but does the job.
The text was updated successfully, but these errors were encountered: