Which 'docker run' flag lifts cgroup limitations?
A. 'docker run --isolation'
B. 'docker run --cap-drop'
C. 'docker run --privileged'
D. 'docker run --cpu-period'
After creating a new service named 'http', you notice that the new service is not registering as healthy. How do you view the list of historical tasks for that service by using the command line?
A. 'docker inspect http'
B. 'docker service inspect http'
C. 'docker service ps http'
D. 'docker ps http'
Which flag for a service would allow a container to consume more than 2 GB of memory only when there is no memory contention but would also prevent a container from consuming more than 4GB of memory, in any case?
A. --limit-memory 2GB --reserve-memory 4GB
B. --limit-memory 4GB --reserve-memory 2GB
C. --memory-swap 2GB --limit-memory 4GB
D. --memory-swap 4GB --limit-memory 2GB
Is this a type of Linux kernel namespace that provides container isolation? Solution: Storage
A. Yes
B. No
Will this sequence of steps completely delete an image from disk in the Docker Trusted Registry? Solution: Delete the image and delete the image repository from Docker Trusted Registry
A. Yes
B. No
You want to create a container that is reachable from its host's network. Does this action accomplish this? Solution: Use network attach to access the containers on the bridge network
A. Yes
B. No
You add a new user to the engineering organization in DTR.
Will this action grant them read/write access to the engineering/api repository?
Solution: Add the user directly to the list of users with read/write access under the repository's Permissions tab.
A. Yes
B. No
You want to create a container that is reachable from its host's network.
Does this action accomplish this?
Solution: Use network connect to access the container on the bridge network.
A. Yes
B. No
You are troubleshooting a Kubernetes deployment called api, and want to see the events table for this object.
Does this command display it?
Solution: kubectl get deployment api
A. Yes
B. No
Is this an advantage of multi-stage builds?
Solution: better logical separation of Dockerfile instructions for increased readability
A. Yes
B. No