From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 90BAE158090 for ; Mon, 23 May 2022 08:24:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id CF1B2E0833; Mon, 23 May 2022 08:24:29 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 95502E0833 for ; Mon, 23 May 2022 08:24:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 91D10341465 for ; Mon, 23 May 2022 08:24:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 1E8513C3 for ; Mon, 23 May 2022 08:24:26 +0000 (UTC) From: "Alexys Jacob" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alexys Jacob" Message-ID: <1653294259.3e757d311f59ba4b4a4000492ea1343ea5c3c9e7.ultrabug@gentoo> Subject: [gentoo-commits] proj/docker-images:master commit in: / X-VCS-Repository: proj/docker-images X-VCS-Files: README.md X-VCS-Directories: / X-VCS-Committer: ultrabug X-VCS-Committer-Name: Alexys Jacob X-VCS-Revision: 3e757d311f59ba4b4a4000492ea1343ea5c3c9e7 X-VCS-Branch: master Date: Mon, 23 May 2022 08:24:26 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 399e0ddc-1ead-47a2-9b2a-6b1fcf6b017d X-Archives-Hash: 4cd6e58cc657f230b7bd1b136a8bfe55 commit: 3e757d311f59ba4b4a4000492ea1343ea5c3c9e7 Author: John Helmert III gentoo org> AuthorDate: Tue May 17 17:24:24 2022 +0000 Commit: Alexys Jacob gentoo org> CommitDate: Mon May 23 08:24:19 2022 +0000 URL: https://gitweb.gentoo.org/proj/docker-images.git/commit/?id=3e757d31 Update README portage tree path and stage3-amd64 -> stage3 Signed-off-by: John Helmert III gentoo.org> Closes: https://github.com/gentoo/gentoo-docker-images/pull/120 Signed-off-by: Alexys Jacob gentoo.org> README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index ebbb88d..b7ac576 100644 --- a/README.md +++ b/README.md @@ -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