ChHarding / TouchTerrain_jupyter_docker

Image for running Touchterrain standalone via a jupyter notebook
15 stars 4 forks source link
3d-printing docker-container earth-engine geotiff jupyter-notebook python stl terrain-model touchterrain

Running TouchTerrain Standalone inside a Docker container

TouchTerrain Standalone Pros & Cons

Pros

Cons

Instructions

Installing Docker

Running the container

(Note: I'm not using a data folder mounted as a volume on the container here b/c I find it easier to use jupyter's upload/download to transfer data to and fro the container.)

Download the image and run the container

docker run -it -p 8888:8888 --name touchterrain_container chharding/touchterrain_jupyter
./install_touchterrain.sh

Using the notebook

./run_touchterrain.sh

Workflow tips

How to build the image

docker build -t chharding/touchterrain_jupyter:latest  .
docker push chharding/touchterrain_jupyter:latest
Thanks to Simon Marius Mudd (https://github.com/simon-m-mudd) for helping me build the docker image based on some of his examples!