doc: Improve "guix pack -f docker" example.
authorLudovic Courtès <ludo@gnu.org>
Mon, 3 Feb 2020 18:30:34 +0000 (19:30 +0100)
committerLudovic Courtès <ludo@gnu.org>
Tue, 4 Feb 2020 23:21:27 +0000 (00:21 +0100)
* doc/guix.texi (Invoking guix pack): Provide more concrete instructions
for the "guix pack -f docker" example.

doc/guix.texi

index 57e4846..f90a8d4 100644 (file)
@@ -5057,12 +5057,21 @@ Alternatively, you can produce a pack in the Docker image format using
 the following command:
 
 @example
-guix pack -f docker guile emacs geiser
+guix pack -f docker -S /bin=bin guile guile-readline
 @end example
 
 @noindent
 The result is a tarball that can be passed to the @command{docker load}
-command.  See the
+command, followed by @code{docker run}:
+
+@example
+docker load < @var{file}
+docker run -ti guile-guile-readline /bin/guile
+@end example
+
+@noindent
+where @var{file} is the image returned by @var{guix pack}, and
+@code{guile-guile-readline} is its ``image tag''.  See the
 @uref{https://docs.docker.com/engine/reference/commandline/load/, Docker
 documentation} for more information.