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
Instead, it just hangs. The run command outputs this information:
Xlib: extension "RANDR" missing on display ":99".
[6:17:0404/164119.237190:ERROR:bus.cc(427)] Failed to connect to the bus: Failed to connect to socket /var/run/dbus/system_bus_socket: No such file or directory
Xlib: extension "RANDR" missing on display ":99".
and the image has to be killed via docker kill. I can get rid of the dbus error with:
But I still just get a hung docker image. I've tested replacing http://google.com with a local URL and --net=host to ensure that it's not hitting the server, and it's not.
Any ideas for how I could get this to work, or to debug it further?
The text was updated successfully, but these errors were encountered:
I expect this command to print out the HTML of a website:
docker-chromium-xvfb/images/base $ docker build -t chromium-xvfb . && docker run --rm --security-opt seccomp=unconfined chromium-xvfb /usr/bin/google-chrome --disable-gpu http://google.com
Instead, it just hangs. The
run
command outputs this information:and the image has to be killed via
docker kill
. I can get rid of the dbus error with:docker run --rm --security-opt seccomp=unconfined chromium-xvfb bash -c 'service dbus start && /usr/bin/google-chrome --disable-gpu http://google.com'
But I still just get a hung docker image. I've tested replacing http://google.com with a local URL and
--net=host
to ensure that it's not hitting the server, and it's not.Any ideas for how I could get this to work, or to debug it further?
The text was updated successfully, but these errors were encountered: