docker repositories
To run docker with GUI, we need XForwarding.
SOCKET=/tmp/.X11-unix
# get container id
containerid=`docker run -it --rm -d -v $SOCKET:$SOCKET -e DISPLAY:$DISPLAY $IMAGE:$TAGS bash`
# certificate
xhost +local:$containerid
# do your work here
docker exec -it $containerid $CMD
# stop container
docker stop $containerid
# un-certificate for better security
xhost -local:$containerid
see run for more detailed information
Content type
Image
Digest
Size
2.1 GB
Last updated
almost 9 years ago
docker pull gilyou/docker-repos