Skip to content

Commit 5b5eb2c

Browse files
authored
Add Docker install instructions (#446)
* Add Docker install instructions to README * Add docker instruction to docs * Fix whitespace
1 parent b5cdceb commit 5b5eb2c

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,15 @@ and to install into a particular conda environment with [`mamba`](https://mamba.
5656
mamba install --channel conda-forge jupytergis
5757
```
5858

59+
#### With Docker
60+
61+
```bash
62+
docker run -p 8888:8888 ghcr.io/geojupyter/jupytergis:latest
63+
```
64+
65+
Replace `latest` with a specific version number if you prefer.
66+
Docker build source is at <https://github.com/geojupyter/jupytergis-docker>.
67+
5968
## Documentation
6069

6170
https://geojupyter.github.io/jupytergis

docs/user_guide/install.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,9 @@ Alternatively, you can install JupyterGIS with ``pip``
1616
.. code-block:: bash
1717
1818
pip install jupytergis
19+
20+
Or you can run JupyterGIS from a Docker image:
21+
22+
.. code-block:: bash
23+
24+
docker run -p 8888:8888 ghcr.io/geojupyter/jupytergis:latest

0 commit comments

Comments
 (0)