Skip to content

sandyherho/py-meteo-num

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

33 Commits
 
 
 
 
 
 
 
 

Repository files navigation

py-meteo-num

License: GPL v3

DOI

Debian-based docker image for implementing atmospheric science data analysis algorithms using Python 3 inside Jupyter Notebook.

Users are required to install the docker in advance according to the host operating systems respectively. The guidelines can be obtained through this site.

To initiate this docker session, run the following command:

docker run --name herholabs/py-meteo-num -p 8888:8888 --env="DISPLAY" -v "${PWD/notebooks:/home/debian/notebooks}" -d meteo-num  

Then open your browser and enter port 8888: http://localhost:8888/.

You will be asked to enter a password. For the password requested, enter: root.

To copy files folders from host to container, run:

docker cp /[host_path]/[file or folder_name] meteo-num:/home/notebooks

Instead, to copy files / folders from container to host, run:

docker cp meteo-num:/home/notebooks/[file or folder_name] /[host_path] 

To stop and delete a container, run:

docker rm -f meteo-num