Skip to content

Commit

Permalink
Dockerfile READMEs added
Browse files Browse the repository at this point in the history
  • Loading branch information
neteler committed Oct 2, 2019
1 parent 5df1dcb commit 184c74a
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 0 deletions.
22 changes: 22 additions & 0 deletions docker/README_debian.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Docker GRASS GIS (Debian linux)

Dockerfile with an [Alpine Linux](https://www.debian.org/) image with [GRASS GIS](https://grass.osgeo.org/), [PDAL](https://pdal.io) support and [grass-session](https://github.com/zarch/grass-session/).

Download size of this image is of approximately 2.6 GB.

Build the docker with:

```bash
$ sudo docker build --build-arg GRASS_VERSION=7.9 \
--build-arg PYTHON_VERSION=3 \
--build-arg PROJ_VERSION=5.2.0 \
--build-arg PROJ_DATUMGRID_VERSION=1.8 \
--file Dockerfile_debian_pdal .
```

View the images available using `sudo docker images` and open a bash terminal with:

```bash
$ sudo docker run -i -t 15550df91610 /bin/bash
bash-5.0#
```
22 changes: 22 additions & 0 deletions docker/README_ubuntu.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Docker GRASS GIS (Ubuntu linux)

Dockerfile with an [Ubuntu Linux](https://ubuntu.com/) image with [GRASS GIS](https://grass.osgeo.org/), [PDAL](https://pdal.io) support and [grass-session](https://github.com/zarch/grass-session/).

Download size of this image is of approximately 2.6 GB.

Build the docker with:

```bash
$ sudo docker build --build-arg GRASS_VERSION=7.9 \
--build-arg PYTHON_VERSION=3 \
--build-arg PROJ_VERSION=4.9.3 \
--build-arg PROJ_DATUMGRID_VERSION=1.8 \
--file Dockerfile_ubuntu_pdal .
```

View the images available using `sudo docker images` and open a bash terminal with:

```bash
$ sudo docker run -i -t 15550df91610 /bin/bash
bash-5.0#
```

0 comments on commit 184c74a

Please sign in to comment.