Question 21

Is this a type of Linux kernel namespace that provides container isolation?
Solution: Storage
  • Question 22

    Can this set of commands identify the published port(s) for a container?
    Solution: docker container inspect', 'docker port'
  • Question 23

    What is the difference between a resource limit and a resource reservation when scheduling services?
  • Question 24

    Is this the purpose of Docker Content Trust?
    Solution: Verify and encrypt Docker registry TLS.
  • Question 25

    Will this command mount the host's '/data' directory to the ubuntu container in read-only mode?
    Solution: 'docker run -v /data:/mydata --mode readonly ubuntu'