In order to examine selenium tests running inside a docker image I am trying to set up a VNC to verify what is going on during the tests.
I am following the suggestions made here and created a new docker image with the following additional lines in Dockerfile
:
RUN apt-get install -y x11vnc
RUN mkdir ~/.vnc
RUN x11vnc -storepasswd 1234 ~/.vnc/passwd
Then I started the docker image with the following command:
docker run -p 5900 --rm -it --entrypoint /bin/bash selenium-tests
and started krdc
as my VNC viewer. So now what?
I do not see my docker image in krdc
. Maybe I am missing something? Do I have to start the vnc code inside docker explicitly? Do I need to pass additional arguments to the docker
command?
- docker: 1.13.1
- ubuntu: 16.4.03
- krdc: 4.14.16