https://github.com/earthobservations/earthobservations-notebook
earthobservations-notebook is a community Jupyter Docker Stack image. The image includes some gems on top of the cgspatial-notebook image.
https://github.com/earthobservations/earthobservations-notebook
Last synced: about 1 month ago
JSON representation
earthobservations-notebook is a community Jupyter Docker Stack image. The image includes some gems on top of the cgspatial-notebook image.
- Host: GitHub
- URL: https://github.com/earthobservations/earthobservations-notebook
- Owner: earthobservations
- License: mit
- Created: 2021-02-05T00:59:41.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-02-05T14:04:27.000Z (over 4 years ago)
- Last Synced: 2025-04-12T21:59:12.896Z (about 1 month ago)
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# earthobservations-notebook
## About
`earthobservations-notebook` is a community Jupyter Docker Stack image.The image includes some gems on top of the [cgspatial-notebook] image, which is
in turn based on the [datascience-notebook] and the [scipy-notebook] images.## Bootstrapping phase
- We are following the guidelines at [Jupyter Community Stacks].
- It is a new notebook and actively looking for contributors.
- Our mission is _standing on the shoulder of giants_ without _reinventing the wheel_.## Build
The image is not yet available on any container registry. So, we have to build
it beforehand.
```sh
docker build --tag=earthobservations/earthobservations-notebook .
```## Run
Invoke an _ephemeral_ container running a Jupyter Notebook server and expose it
on port 8888.
```sh
docker run -it --rm --publish=8888:8888 earthobservations/earthobservations-notebook
```
The server logs will appear in the terminal. Visiting
`http://:8888/?token=` in a browser loads JupyterLab, where
`hostname` is the name of the computer running docker and `token` is the secret
token printed in the console. Docker destroys the container after notebook
server exit.## Credits
Kudos go to all people from the community for tirelessly working on the
foundation infrastructure. You know who you are.[Jupyter Community Stacks]: https://jupyter-docker-stacks.readthedocs.io/en/latest/contributing/stacks.html
[cgspatial-notebook]: https://github.com/SCiO-systems/cgspatial-notebook
[datascience-notebook]: https://jupyter-docker-stacks.readthedocs.io/en/latest/using/selecting.html#jupyter-datascience-notebook
[scipy-notebook]: https://jupyter-docker-stacks.readthedocs.io/en/latest/using/selecting.html#jupyter-scipy-notebook