From 41da0b75944da5f0d6f9ac3417e97d2746d6c9f8 Mon Sep 17 00:00:00 2001 From: sid palas Date: Fri, 17 Feb 2023 17:02:06 -0500 Subject: [PATCH] remove emojis from example commands --- 04-using-3rd-party-containers/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/04-using-3rd-party-containers/README.md b/04-using-3rd-party-containers/README.md index c072da7..189a6d7 100644 --- a/04-using-3rd-party-containers/README.md +++ b/04-using-3rd-party-containers/README.md @@ -120,7 +120,7 @@ docker run -it --rm ubuntu:22.04 # Make a directory and store a file in it mkdir my-data -echo "Hello from the container! 👋" > /my-data/hello.txt +echo "Hello from the container!" > /my-data/hello.txt # Confirm the file exists cat my-data/hello.txt @@ -150,7 +150,7 @@ docker run -it --rm --mount source=my-volume,destination=/my-data/ ubuntu:22.04 docker run -it --rm -v my-volume:/my-data ubuntu:22.04 # Now we can create and store the file into the location we mounted the volume -echo "Hello from the container! 👋" > /my-data/hello.txt +echo "Hello from the container!" > /my-data/hello.txt cat my-data/hello.txt exit ``` @@ -196,7 +196,7 @@ docker run -it --rm --mount type=bind,source="${PWD}"/my-data,destination=/my-d # Again, there is a similar (but shorter) syntax using -v which accomplishes the same docker run -it --rm -v ${PWD}/my-data:/my-data ubuntu:22.04 -echo "Hello from the container! 👋" > /my-data/hello.txt +echo "Hello from the container!" > /my-data/hello.txt # You should also be able to see the hello.txt file on your host system cat my-data/hello.txt