This is a simple extension of the Jupyter notebook server (jupyter/scipy-notebook) for working with iNaturalist data, which adds pyinaturalist plus some extra packages for data exploration & visualization.
docker pull jxcook/pyinaturalist-notebook
docker run -itd \
--name jupyter-inat \
--publish 8888:8888 \
--volume $(pwd):/home/jovyan/work \
jxcook/pyinaturalist-notebook
# Show a link to the running notebook, including the access token
docker exec jupyter-inat jupyter notebook list
Notes:
- If you use docker-compose, a
docker-compose.yml
file is also included. - See Security in the Jupyter notebook server for options for setting your own token or password.
- See Running a Container in the Jupyter docs for more general info and examples.