Skip to content

Commit 6cbbf05

Browse files
committed
try to fix syntax thing
1 parent eea88b6 commit 6cbbf05

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

chapter_09_docker.asciidoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -942,7 +942,7 @@ CONTAINER ID IMAGE COMMAND CREATED STATUS
942942

943943
Your values for `CONTAINER_ID` and `NAMES` will be different from mine,
944944
because they're randomly generated.
945-
But, make a note of one or the other, and then run `docker exec -it <containerid> bash`.
945+
But, make a note of one or the other, and then run `docker exec -it <container-id> bash`.
946946
On most platforms, you can use tab-completion for the container id or name.
947947

948948
Let's try it now. Notice that the shell prompt will change from your default Bash prompt
@@ -954,10 +954,10 @@ so that you can be sure of what's being run inside vs outside containers.
954954

955955
[subs="specialcharacters,macros"]
956956
----
957-
$ pass:quotes[*docker exec -it <container-id-or-name> bash*]
957+
$ pass:quotes[*docker exec -it container-id-or-name bash*]
958958
root@5ed84681fdf8:/src# pass:quotes[*apt-get update && apt-get install -y curl*]
959-
Get:1 http://deb.debian.org/debian bookworm InRelease [151 kB]
960-
Get:2 http://deb.debian.org/debian bookworm-updates InRelease [52.1 kB]
959+
Get:1 pass:[http://deb.debian.org/debian] bookworm InRelease [151 kB]
960+
Get:2 pass:[http://deb.debian.org/debian] bookworm-updates InRelease [52.1 kB]
961961
[...]
962962
Reading package lists... Done
963963
Building dependency tree... Done
@@ -976,7 +976,7 @@ root@5ed84681fdf8:/src# pass:quotes[*curl -iv http://localhost:8888*]
976976
< HTTP/1.1 200 OK
977977
HTTP/1.1 200 OK
978978
[...]
979-
<!doctype html>
979+
pass:verbatim[<!doctype html>]
980980
<html lang="en">
981981
982982
<head>

0 commit comments

Comments
 (0)