aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Isaac2025-01-28 14:08:41 +0000
committerArun Isaac2025-01-28 14:09:13 +0000
commit0a0a0635f82b2ff152379a9b9cc2e856b5eba3a4 (patch)
tree83a6731f724fd7933f8d7d8f2bfe16f6bd20febd
parentda5b047ee6bf3f673b3c094af1a1d7b8c04fca79 (diff)
downloadccwl-main.tar.gz
ccwl-main.tar.lz
ccwl-main.zip
REAME: Add image name to docker commands.HEADmain
* README.org (Installation)[Using binary software bundles]{Using the Docker image}: Add image name to docker commands.
-rw-r--r--README.org4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.org b/README.org
index 3d8e31a..1aba408 100644
--- a/README.org
+++ b/README.org
@@ -36,14 +36,14 @@ Download the Docker image from [[https://github.com/arunisaac/ccwl/releases][the
it. Then, run ccwl with command-line arguments of your choice.
#+BEGIN_SRC shell
$ docker load -i ccwl-docker.tar.gz
- $ docker run ccwl [ARGS...]
+ $ docker run ccwl ccwl [ARGS...]
#+END_SRC
When passing files into the Docker container, remember to share the
filesystem. The following command is one way to share the current
directory with the container.
#+BEGIN_SRC shell
- $ docker run -v "$PWD:$PWD" -w "$PWD" ccwl compile foo.scm
+ $ docker run -v "$PWD:$PWD" -w "$PWD" ccwl ccwl compile foo.scm
#+END_SRC
** Using Guix