When Fedora meets Jupyter, dockerness will show you the spatial light.
https://github.com/weihanglo/geo-jupyter.git
When Fedora meets Jupyter, Dockerness will show you the spatial light.
nbuser with ownership over home/nbuserhttp://localhost:8888Ensure you have Docker installed and run in background/daemon mode.
For macOS user, it is recommended to download the new docker for mac via hombrew-cask.
brew cask install docker
After the installation, do
docker run -d -p 8888:8888 weihanglo/geo-jupyter
which will launch a Jupyter Notebook server instance in http://localhost:8888.
Just open your firefox and work as normal!
If you need to share files/directories between docker container and the host machine, use -v or --volume flag to link the two volumes:
docker run -d -p 8888:8888 -v /path/to/host:/home/notebooks weihanglo/geo-jupyter
or simplify the host path to current work directory:
docker run -d -p 8888:8888 -v $(pwd):/home/notebooks weihanglo/geo-jupyter
You could also run alternative commands in the container.
docker run -it --rm weihanglo/geo-jupyter bash
Because I am a big fan of Fedora!!
MIT