Skip to content

Commit b39a048

Browse files
authored
Fix typo in docker_demo.md container name (#242)
1 parent 9387461 commit b39a048

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

02_virtualization_and_containers/docker_demo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
- We can make sure that the container is removed after exiting by the `--rm` options, i.e., `docker run --rm -i -t ubuntu /bin/bash`
2424

2525
- When container is running, we see it when calling `docker ps`
26-
- Start container (with name `tutoral`) `docker run --rm -i -t --name tutorial ubuntu /bin/bash`
26+
- Start container (with name `tutorial`) `docker run --rm -i -t --name tutorial ubuntu /bin/bash`
2727
- Leave it `CTRL-P-Q` (all keys pressed at the same time)
2828
- Show container running `docker ps`
2929
- Reattach to container `docker container attach tutorial`

0 commit comments

Comments
 (0)