An open API service indexing awesome lists of open source software.

https://github.com/waliot/geospatial-anaconda

Geospatial Anaconda Docker Image for RnD in GIS 🔭
https://github.com/waliot/geospatial-anaconda

docker docker-compose docker-image geospatial hacktoberfest hacktoberfest-accepted jupiter jupiter-notebook

Last synced: about 1 month ago
JSON representation

Geospatial Anaconda Docker Image for RnD in GIS 🔭

Awesome Lists containing this project

README

          

# Geospatial Anaconda 🌎 🐍

## Official image on Docker Hub:

```bash
$ docker pull waliot/geospatial-anaconda:latest
$ docker run -d \
--name geospatial-anaconda \
--restart=unless-stopped \
-v `pwd`/jupiter-notebooks:/opt/notebooks \
-p 8888:8888 \
waliot/geospatial-anaconda:latest
$ docker container logs geospatial-anaconda
```

---

## Build & Run

Build & Run with `docker container`:

```bash
$ docker build -t geospatial-anaconda .
$ docker run -d \
--name geospatial-anaconda \
--restart=unless-stopped \
-v `pwd`/jupiter-notebooks:/opt/notebooks \
-p 8888:8888 \
geospatial-anaconda:latest
```

Build & Run with `docker-compose`:

```bash
$ docker-compose build
$ docker-compose up -d
```

![jupyter](./assets/jupyter.png)