- Which of the following options is not available for containers?
a) build
b) update
c) destroy
d) create
- Which of the following sentences is false?
a) A container's life is managed using start and stop commands
b) Containers always stop after 10 seconds
c) Containers can be created and then started
d) Volumes created during the container's lifetime must be deleted by hand unless we use the -v option when deleting the container
- Which of the following sentences is true in relation to docker kill?
a) It will kill all container processes
b) It will send a SIGKILL signal to the container's main process
c) It will remove the container once it is killed
d) It will wait 10 seconds by default before really killing the container
- We executed a container named webserver. Which of the following sentences is false?
a) It can be removed using docker container rm --force
b) We can update its image using docker container update
c) We can rename the webserver container to websrv...