SSH login-able and X11 forward-able Ubuntu Docker container. This will be base image of development environment.
- Start X Server on your client computer. i.e. Cygwin/X Server etc...
- Check
DISPLAY
value by runningecho $DISPLAY
on client side. It should be:0.0
or something. - Start container on the server by
docker-compose up -d
. - Then run
ssh -Yp 8022 [email protected]
to login to the container. - You can try
xcalc &
for check X11 working well.