Following this guide (https://hub.docker.com/r/inspectit/inspectit#running-a-specific-version-of-the-client) i am trying to start the docker container like this:
$ docker run -it --rm --name inspectIT-GUI -e DISPLAY -e XAUTHORITY --net=host -v $XAUTHORITY:$XAUTHORITY inspectit/inspectit
This is the error log:
The program 'inspectIT' received an X Window System error. This probably reflects a bug in the program. The error was 'BadAccess (attempt to access private resource denied)'. (Details: serial 399 error_code 10 request_code 130 minor_code 1) (Note to programmers: normally, X errors are reported asynchronously; that is, you will receive the error a while after causing it. To debug your program, run it with the --sync command line option to change this behavior. You can then get a meaningful backtrace from your debugger if you break on the gdk_x_error() function.)
However using the host IPC works:
$ docker run -it --rm --ipc=host --name inspectIT-GUI -e DISPLAY -e XAUTHORITY --net=host -v $XAUTHORITY:$XAUTHORITY inspectit/inspectit
Following this guide (https://hub.docker.com/r/inspectit/inspectit#running-a-specific-version-of-the-client) i am trying to start the docker container like this:
This is the error log:
The program 'inspectIT' received an X Window System error. This probably reflects a bug in the program. The error was 'BadAccess (attempt to access private resource denied)'. (Details: serial 399 error_code 10 request_code 130 minor_code 1) (Note to programmers: normally, X errors are reported asynchronously; that is, you will receive the error a while after causing it. To debug your program, run it with the --sync command line option to change this behavior. You can then get a meaningful backtrace from your debugger if you break on the gdk_x_error() function.)However using the host IPC works: