Gentoo Archives: gentoo-commits

From: Alexys Jacob <ultrabug@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/docker-images:master commit in: /
Date: Fri, 15 Nov 2019 08:25:15
Message-Id: 1573806299.c1b181c97ab7c223b8730fa72e9d988c37a640a4.ultrabug@gentoo
1 commit: c1b181c97ab7c223b8730fa72e9d988c37a640a4
2 Author: John R. Graham <john_r.graham <AT> technicolor <DOT> com>
3 AuthorDate: Fri Jun 7 18:29:55 2019 +0000
4 Commit: Alexys Jacob <ultrabug <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 15 08:24:59 2019 +0000
6 URL: https://gitweb.gentoo.org/proj/docker-images.git/commit/?id=c1b181c9
7
8 Corrected an example so the the container actually runs.
9
10 - Not sure if this is just a typo or if the behavior has changed
11 over time but the current "Using the portage container as a
12 data volume" example exits immediately because bash has no
13 stdin.
14
15 Signed-off-by: John R. Graham <john_r_graham <AT> gentoo.org>
16 Closes: https://github.com/gentoo/gentoo-docker-images/pull/66
17 Signed-off-by: Alexys Jacob <ultrabug <AT> gentoo.org>
18
19 README.md | 2 +-
20 1 file changed, 1 insertion(+), 1 deletion(-)
21
22 diff --git a/README.md b/README.md
23 index e5d0779..2a1662f 100644
24 --- a/README.md
25 +++ b/README.md
26 @@ -34,7 +34,7 @@ The container being built is defined by the TARGET environment variable:
27
28 ```
29 docker create -v /usr/portage --name myportagesnapshot gentoo/portage:latest /bin/true
30 -docker run --volumes-from myportagesnapshot gentoo/stage3-amd64:latest /bin/bash
31 +docker run --interactive --tty --volumes-from myportagesnapshot gentoo/stage3-amd64:latest /bin/bash
32 ```
33
34 # Using the portage container in a multi-stage build