소스 검색

Dockerfile READMEs added

Markus Neteler 5 년 전
부모
커밋
8c70005879
2개의 변경된 파일44개의 추가작업 그리고 0개의 파일을 삭제
  1. 22 0
      docker/README_debian.md
  2. 22 0
      docker/README_ubuntu.md

+ 22 - 0
docker/README_debian.md

@@ -0,0 +1,22 @@
+# Docker GRASS GIS (Debian Linux)
+
+Dockerfile with an [Debian 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.8 \
+                    --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 - 0
docker/README_ubuntu.md

@@ -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.8 \
+                    --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#
+```