Using this dockerfile you can build the image from scratch yourself, alternatively you can also find a pre-built image from my docker repository here
If you want to build the image then copy the dockerfile to a directory of choice, open a powershell there and execute:
docker build . -t [name:tag]
So for example:
docker build . -t [Keras-mxnet:latest]
Open a powershell and apply the following steps:
- Make sure Docker is installed, running and that your drive is shared in docker settings.
- Navigate to your project working space
docker run -it -v ${PWD}:/tmp/working -w=/tmp/working -p 8888:8888 --rm [image name] jupyter notebook --ip="*" --notebook-dir=/tmp/working --allow-rootYou can find the image name with the command:docker images