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 🔭
- Host: GitHub
- URL: https://github.com/waliot/geospatial-anaconda
- Owner: waliot
- License: mit
- Created: 2021-03-04T06:03:58.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2023-10-17T16:37:24.000Z (over 2 years ago)
- Last Synced: 2025-03-28T21:14:38.124Z (about 1 year ago)
- Topics: docker, docker-compose, docker-image, geospatial, hacktoberfest, hacktoberfest-accepted, jupiter, jupiter-notebook
- Language: Dockerfile
- Homepage: https://hub.docker.com/repository/docker/waliot/geospatial-anaconda
- Size: 847 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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
```
