Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion 02_virtualization_and_containers/docker_demo.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
- 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`

- When container is running, we see it when calling `docker ps`
- 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`
- Leave it `CTRL-P-Q` (all keys pressed at the same time)
- Show container running `docker ps`
- Reattach to container `docker container attach tutorial`
Expand Down