$ docker run -dit --name gdal-jupyter -v $PWD:/mnt/data -p 8000:8000 chbrandt/gispy:jupyterhub
10K+
Docker images for GIS processing with Python.
All containers here extend the one provided by OSGeo with GDAL installed, osgeo/gdal.
Images built from dockerfiles here defined are available
in the DockerHub under chbrandt/gispy
Especifically, the following tags are associated to dockerfiles in here:
chbrandt/gispy:gdal-3.2.0chbrandt/gispy:gdalchbrandt/gispy:latestchbrandt/gispy:jupyterhubJupyterHub image default user:
- username:
user- password:
123456
The simplest container to run here goes:
% docker run -it --rm chbrandt/gispy:gdal
, and you should land in the container shell (-it).
Exit (ctrl-d) and the container will be remove too (--rm)
To have some (geo) data in there, you can mount a volume (-v),
% docker run -it --rm --name gispy \
-v $PWD:/mnt/data \
chbrandt/gispy:gdal
, where current working directory ($PWD) is being mapped to container's /mnt/data.
In the following examples, localhost' port 8000 is being used to run the container
running Jupyter ("gdal_jupyter").
To run the image using the default user user:123456,
% docker run -it --rm --name jupyterhub \
-p 8000:8000 -v $PWD:/mnt/data \
chbrandt/gispy:jupyterhub
To run the image using GitHub authentication,
% docker run -it --rm --name gispy_jupyterhub \
-p 8000:8000 -v $PWD:/mnt/data \
-e GITHUB_CLIENT_ID=<your-github-client-id> \
-e GITHUB_CLIENT_SECRET=<your-github-client-secret> \
chbrandt/gispy:jupyterhub
Content type
Image
Digest
Size
1 GB
Last updated
over 5 years ago
docker pull chbrandt/gispy