stefanscherer/xeyes
Run GUI apps in Linux containers
Coming to your WSL 2 distro very soon.
docker run --rm -it -e DISPLAY -v /tmp/.X11-unix:/tmp/.X11-unix:ro --net=host stefanscherer/xeyes
FROM ubuntu
RUN apt update
RUN apt install -y x11-apps
CMD ["/usr/bin/xeyes"]
docker pull stefanscherer/xeyes