I'm trying to run a container based on ubuntu:15.10 from my Mac.
I run the following command
docker run -i -v /tmp/.X11-unix:/tmp/. -e DISPLAY=192.168.0.104:0 --privileged mycompany/mycontainer
(The IP was taken from my en0: inet using ifconfig)
I'm getting the following error:
libGL error: No matching fbConfigs or visuals found
libGL error: failed to load driver: swrast
X Error of failed request: BadValue (integer parameter out of range for operation)
Major opcode of failed request: 149 (GLX)
Minor opcode of failed request: 24 (X_GLXCreateNewContext)
Value in failed request: 0x0
Serial number of failed request: 25
Current serial number in output stream: 26
This container runs on another team member Ubuntu OS without any issues.
Any ideas what is causing this error?