diff options
author | Brett Randall <javabrett@gmail.com> | 2017-08-04 12:08:03 +1000 |
---|---|---|
committer | Manuel Rüger <manuel@rueg.eu> | 2017-08-20 12:17:06 +0200 |
commit | 73b25f3dfac3d1164ce7f1a451fd991c0450e5d3 (patch) | |
tree | f4f32af6e2decaf9782256e379e09008661c36b4 | |
parent | Fix stage3 Dockerfile for x86 builds (diff) | |
download | docker-images-73b25f3dfac3d1164ce7f1a451fd991c0450e5d3.tar.gz docker-images-73b25f3dfac3d1164ce7f1a451fd991c0450e5d3.tar.bz2 docker-images-73b25f3dfac3d1164ce7f1a451fd991c0450e5d3.zip |
A couple of rename fixes: stage- -> stage3-.
-rw-r--r-- | README.md | 4 | ||||
-rwxr-xr-x | build.sh | 2 |
2 files changed, 3 insertions, 3 deletions
@@ -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 @@ -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 |