How can you run GUI applications in a Docker container?
Are there any images that set up vncserver or something so that you can - for example - add an e
vncserver
You can allow the Docker user (here: root) to access the X11 display:
XSOCK=/tmp/.X11-unix xhost +SI:localuser:root docker run -t -i --rm -v $XSOCK:$XSOCK:ro -e DISPLAY=unix$(DISPLAY) image xhost -SI:localuser:root