From 9520560b7a9aaab097281cdf7a8bad0559c9d34e Mon Sep 17 00:00:00 2001 From: Markus Neteler Date: Fri, 17 Jun 2022 11:24:55 +0200 Subject: [PATCH] docker: update outdated release branch names (#2431) Replaces `releasebranch_7_8` with `releasebranch_8_2` --- docker/alpine/README.md | 2 +- docker/debian/README.md | 5 +++-- docker/ubuntu/README.md | 4 ++-- singularity/debian/README_debian.md | 6 +++--- 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/docker/alpine/README.md b/docker/alpine/README.md index 826629e1cb5..00e6a1d1fbc 100644 --- a/docker/alpine/README.md +++ b/docker/alpine/README.md @@ -34,7 +34,7 @@ __To build a stable version__: change to the releasebranch or tag you want to build: ```bash -git checkout remotes/origin/releasebranch_7_8 +git checkout remotes/origin/releasebranch_8_2 ``` and build and enter with: diff --git a/docker/debian/README.md b/docker/debian/README.md index 43b6361a768..f5ced2cfac6 100644 --- a/docker/debian/README.md +++ b/docker/debian/README.md @@ -21,7 +21,8 @@ docker build \ --tag grass-py3-pdal:latest-debian . ``` -View the images available using `sudo docker images` and open a bash terminal with: +View the images available using `sudo docker images` and open a bash terminal +with: ```bash $ docker run -it grass-py3-pdal:latest-debian /bin/bash @@ -33,7 +34,7 @@ __To build a stable version__: change to the releasebranch or tag you want to build: ```bash -git checkout remotes/origin/releasebranch_7_8 +git checkout remotes/origin/releasebranch_8_2 ``` and build and enter with: diff --git a/docker/ubuntu/README.md b/docker/ubuntu/README.md index e7e8e00c94c..7fd0eef92c9 100644 --- a/docker/ubuntu/README.md +++ b/docker/ubuntu/README.md @@ -36,7 +36,7 @@ __To build a stable version__: change to the releasebranch or tag you want to build: ```bash -git checkout remotes/origin/releasebranch_7_8 +git checkout remotes/origin/releasebranch_8_2 ``` and build and enter with: @@ -73,7 +73,7 @@ __To build a latest version__: change to the releasebranch or tag you want to build: ```bash -git checkout remotes/origin/releasebranch_7_8 +git checkout remotes/origin/releasebranch_8_2 ``` and build and enter with: diff --git a/singularity/debian/README_debian.md b/singularity/debian/README_debian.md index 276ebde1438..824986042b9 100644 --- a/singularity/debian/README_debian.md +++ b/singularity/debian/README_debian.md @@ -24,17 +24,17 @@ __To build a stable version__: change to the releasebranch or tag you want to build: ```bash -git checkout remotes/origin/releasebranch_7_8 +git checkout remotes/origin/releasebranch_8_2 ``` and build and enter with: ```bash -sudo singularity build grass_7_8.simg singularity/debian/singularity_debian +sudo singularity build grass_8_2.simg singularity/debian/singularity_debian ``` The image can be used as: ```bash -singularity exec containers/grass_7.8.simg grass --version +singularity exec containers/grass_8.2.simg grass --version ```