We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9387461 commit b39a048Copy full SHA for b39a048
02_virtualization_and_containers/docker_demo.md
@@ -23,7 +23,7 @@
23
- 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`
24
25
- 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`
+- Start container (with name `tutorial`) `docker run --rm -i -t --name tutorial ubuntu /bin/bash`
27
- Leave it `CTRL-P-Q` (all keys pressed at the same time)
28
- Show container running `docker ps`
29
- Reattach to container `docker container attach tutorial`
0 commit comments