aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrett Randall <javabrett@gmail.com>2017-08-04 12:08:03 +1000
committerManuel Rüger <manuel@rueg.eu>2017-08-20 12:17:06 +0200
commit73b25f3dfac3d1164ce7f1a451fd991c0450e5d3 (patch)
treef4f32af6e2decaf9782256e379e09008661c36b4
parentFix stage3 Dockerfile for x86 builds (diff)
downloaddocker-images-73b25f3dfac3d1164ce7f1a451fd991c0450e5d3.tar.gz
docker-images-73b25f3dfac3d1164ce7f1a451fd991c0450e5d3.tar.bz2
docker-images-73b25f3dfac3d1164ce7f1a451fd991c0450e5d3.zip
A couple of rename fixes: stage- -> stage3-.
-rw-r--r--README.md4
-rwxr-xr-xbuild.sh2
2 files changed, 3 insertions, 3 deletions
diff --git a/README.md b/README.md
index f2c6f4e..3ceb3b1 100644
--- a/README.md
+++ b/README.md
@@ -28,13 +28,13 @@ https://hub.docker.com/u/gentoo/
The containers are created using a multi-stage build, which requires docker-17.05.0 or later.
The container being built is defined by the TARGET environment variable:
-`` TARGET=stage-amd64 ./build.sh ``
+`` TARGET=stage3-amd64 ./build.sh ``
# Using the portage container as a data volume
```
docker create -v /usr/portage --name myportagesnapshot gentoo/portage:latest /bin/true
-docker run --volumes-from myportagesnapshot gentoo/stage-amd64:latest /bin/bash
+docker run --volumes-from myportagesnapshot gentoo/stage3-amd64:latest /bin/bash
```
# Contributing
diff --git a/build.sh b/build.sh
index 9bb5782..80a7998 100755
--- a/build.sh
+++ b/build.sh
@@ -2,7 +2,7 @@
# Used to create Gentoo stage3 and portage containers simply by specifying a
# TARGET env variable.
-# Example usage: TARGET=stage-amd64 ./build.sh
+# Example usage: TARGET=stage3-amd64 ./build.sh
# Split the TARGET variable into three elements separated by hyphens