Skip to content
vhirtham edited this page Aug 6, 2020 · 3 revisions

General

The current docker image used by travis is located here:

https://hub.docker.com/r/vhirtham/gdl/

To start it locally just run:

docker run -it gdl_docker

The corresponding Dockerfile is located in the projects root directory. If you want to change something modify the Dockerfile and then use:

docker build -t vhirtham/gdl .         # Don't forget the "." at the end

To push the modifications you need to login first:

docker login

Then run

docker push vhirtham/gdl 

Mount locations from host

If you need to share data with the host machine you can run with the -v flag:

docker run -it -v ${FOLDER_ON_HOST}:${FOLDER_ON_IMAGE} vhirtham/gdl

Now you should be capable of transferring data

Docker with GUI

Clone this wiki locally