Skip to content

Commit 41da0b7

Browse files
committed
remove emojis from example commands
1 parent 29e31ef commit 41da0b7

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

‎04-using-3rd-party-containers/README.md‎

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ docker run -it --rm ubuntu:22.04
120120

121121
# Make a directory and store a file in it
122122
mkdir my-data
123-
echo "Hello from the container! 👋" > /my-data/hello.txt
123+
echo "Hello from the container!" > /my-data/hello.txt
124124

125125
# Confirm the file exists
126126
cat my-data/hello.txt
@@ -150,7 +150,7 @@ docker run -it --rm --mount source=my-volume,destination=/my-data/ ubuntu:22.04
150150
docker run -it --rm -v my-volume:/my-data ubuntu:22.04
151151

152152
# Now we can create and store the file into the location we mounted the volume
153-
echo "Hello from the container! 👋" > /my-data/hello.txt
153+
echo "Hello from the container!" > /my-data/hello.txt
154154
cat my-data/hello.txt
155155
exit
156156
```
@@ -196,7 +196,7 @@ docker run -it --rm --mount type=bind,source="${PWD}"/my-data,destination=/my-d
196196
# Again, there is a similar (but shorter) syntax using -v which accomplishes the same
197197
docker run -it --rm -v ${PWD}/my-data:/my-data ubuntu:22.04
198198

199-
echo "Hello from the container! 👋" > /my-data/hello.txt
199+
echo "Hello from the container!" > /my-data/hello.txt
200200

201201
# You should also be able to see the hello.txt file on your host system
202202
cat my-data/hello.txt

0 commit comments

Comments
 (0)