diff options
author | John Helmert III <ajak@gentoo.org> | 2022-05-17 12:24:24 -0500 |
---|---|---|
committer | Alexys Jacob <ultrabug@gentoo.org> | 2022-05-23 08:24:19 +0000 |
commit | 3e757d311f59ba4b4a4000492ea1343ea5c3c9e7 (patch) | |
tree | dc9d27c4623201b1f4e80dde740a23ddccb89056 | |
parent | Fix arm64 stage3 builds (diff) | |
download | docker-images-3e757d311f59ba4b4a4000492ea1343ea5c3c9e7.tar.gz docker-images-3e757d311f59ba4b4a4000492ea1343ea5c3c9e7.tar.bz2 docker-images-3e757d311f59ba4b4a4000492ea1343ea5c3c9e7.zip |
Update README portage tree path and stage3-amd64 -> stage3
Signed-off-by: John Helmert III <ajak@gentoo.org>
Closes: https://github.com/gentoo/gentoo-docker-images/pull/120
Signed-off-by: Alexys Jacob <ultrabug@gentoo.org>
-rw-r--r-- | README.md | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -6,7 +6,7 @@ A collection of Dockerfiles for generating Gentoo docker images. These images are intended to be created automatically by a cron job and pushed to [docker hub](https://hub.docker.com/u/gentoo/). -This repository include basic stage3 images and an image usable as a `/usr/portage` volume +This repository include basic stage3 images and an image usable as a `/var/db/repos/gentoo` volume # DockerHub @@ -125,8 +125,8 @@ The container being built is defined by the TARGET environment variable: # Using the portage container as a data volume ``` -docker create -v /usr/portage --name myportagesnapshot gentoo/portage:latest /bin/true -docker run --interactive --tty --volumes-from myportagesnapshot gentoo/stage3-amd64:latest /bin/bash +docker create -v /var/db/repos/gentoo --name myportagesnapshot gentoo/portage:latest /bin/true +docker run --interactive --tty --volumes-from myportagesnapshot gentoo/stage3:latest /bin/bash ``` # Using the portage container in a multi-stage build |