Skip to content

Latest commit

 

History

History

dockerfiles

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

Build a Docker image

  1. Clone geowombat
git clone https://github.com/jgrss/geowombat.git
cd geowombat/
  1. Build the image

In this command, replace < image name > with the name of the new image.

docker build -t <image name> .

For example, name the image:

docker build -t geowombat .

NOTE: Be patient -- the image can take a while to build.


  1. Run geowombat with the new Docker image.

Assuming you named the image geowombat, run:

docker run -it geowombat:latest

For example, to run a Jupyter notebook with the Docker image:

First, run:

docker run -it -p 8888:8888 geowombat:latest jupyter notebook --ip 0.0.0.0 --port 8888 --no-browser --allow-root