Ubuntu image for software developement
150
docker run -it --net=host -e "TERM=xterm-256color" -e DISPLAY -v /tmp/.X11-unix jakutenshi/ubuntu-dev bash -l
After that, for GUI enabling you need to get xauth user's token from host machine:
xauth list
Copy the whole line (token) and from the container add your token:
xauth add <your_token>
Done, yours GUI apps should works.
Daily reminder: for starting of stopped existing container exec:
docker start -i <container_name_or_id>
[1]. Dockerfile : https://github.com/JAkutenshi/master_degree_repo/blob/master/dockerfiles/ubuntu-dev/Dockerfile
Content type
Image
Digest
Size
345.1 MB
Last updated
over 8 years ago
docker pull jakutenshi/ubuntu-dev