Questions
- A single Docker image can be used on any Docker host, regardless of the architecture used.
- True
- False
Answer: B (We added the topic of cross-platform images)
- What does Docker use to merge multiple image layers into a single filesystem?
- Merged filesystem
- NTFS filesystem
- EXT4 filesystem
- Union filesystem
Answer: D
- Kubernetes is only compatible with the Docker runtime engine.
- True
- False
Answer: B
- When you edit a container's filesystem interactively, what layer are the changes written to?
- Operating system layer
- Bottom-most layer
- Container layer
- Ephemeral layer
Answer: C
- Assuming the image contains the required binaries, what Docker command allows you to gain access to a container's bash prompt?
docker shell -it <container> /bin/bash
docker run -it <container> /bin/bash
docker exec -it <container> /bin/bash
docker spawn -it <container> /bin/bash
Answer: B
- When a container is stopped, the Docker daemon will delete all traces of...