• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..10-Oct-2021-

DockerfileH A D10-Oct-20217.1 KiB249223

README.mdH A D10-Oct-20211 KiB4934

README.md

1# Docker GRASS GIS (Debian Linux)
2
3Dockerfile with an [Debian Linux](https://www.debian.org/) image with
4[GRASS GIS](https://grass.osgeo.org/), [PDAL](https://pdal.io) support and
5[grass-session](https://github.com/zarch/grass-session/).
6
7Download size of this image is of approximately 2.6 GB.
8
9Clone this repository and change directory:
10
11```bash
12git clone https://github.com/OSGeo/grass.git
13cd grass
14```
15
16__Build the docker with__:
17
18```bash
19docker build \
20         --file docker/debian/Dockerfile \
21         --tag grass-py3-pdal:latest-debian .
22```
23
24View the images available using `sudo docker images` and open a bash terminal with:
25
26```bash
27$ docker run -it grass-py3-pdal:latest-debian /bin/bash
28bash-5.0#
29```
30
31__To build a stable version__:
32
33change to the releasebranch or tag you want to build:
34
35```bash
36git checkout remotes/origin/releasebranch_7_8
37```
38
39and build and enter with:
40
41```bash
42$ docker build \
43         -f docker/debian/Dockerfile \
44         -t grass-py3-pdal:stable-debian .
45
46$ docker run -it grass-py3-pdal:stable-debian /bin/bash
47bash-5.0#
48```
49