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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 841AC13997D for ; Fri, 15 Nov 2019 08:25:15 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A0084E082F; Fri, 15 Nov 2019 08:25:14 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DE421E082F for ; Fri, 15 Nov 2019 08:25:13 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A8F1A34C8AB for ; Fri, 15 Nov 2019 08:25:12 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4E523824 for ; Fri, 15 Nov 2019 08:25:10 +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: <1573806299.c1b181c97ab7c223b8730fa72e9d988c37a640a4.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: c1b181c97ab7c223b8730fa72e9d988c37a640a4 X-VCS-Branch: master Date: Fri, 15 Nov 2019 08:25:10 +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: 3e2c8e90-d98e-4187-b563-c0284f43b498 X-Archives-Hash: 1c85ac8dc5602daca76247a891fc5e04 commit: c1b181c97ab7c223b8730fa72e9d988c37a640a4 Author: John R. Graham technicolor com> AuthorDate: Fri Jun 7 18:29:55 2019 +0000 Commit: Alexys Jacob gentoo org> CommitDate: Fri Nov 15 08:24:59 2019 +0000 URL: https://gitweb.gentoo.org/proj/docker-images.git/commit/?id=c1b181c9 Corrected an example so the the container actually runs. - Not sure if this is just a typo or if the behavior has changed over time but the current "Using the portage container as a data volume" example exits immediately because bash has no stdin. Signed-off-by: John R. Graham gentoo.org> Closes: https://github.com/gentoo/gentoo-docker-images/pull/66 Signed-off-by: Alexys Jacob gentoo.org> README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e5d0779..2a1662f 100644 --- a/README.md +++ b/README.md @@ -34,7 +34,7 @@ The container being built is defined by the TARGET environment variable: ``` docker create -v /usr/portage --name myportagesnapshot gentoo/portage:latest /bin/true -docker run --volumes-from myportagesnapshot gentoo/stage3-amd64:latest /bin/bash +docker run --interactive --tty --volumes-from myportagesnapshot gentoo/stage3-amd64:latest /bin/bash ``` # Using the portage container in a multi-stage build