If a Dockerfile contains the following lines:
WORKDIR /
RUN cd /tmp
RUN echo test > test
where is the file test located?
Answer : C
Which CPU flag indicates the hardware virtualization capability on an AMD CPU?
Answer : C
Which of the following values would be valid in the FROM statement in a Dockerfile?
Answer : A
What command is used to run a process in a new Linux namespace? (Specify ONLY the command without any path or parameters.)
Answer : A
What is the default path to the Docker daemon configuration file on Linux? (Specify the full name of the file, Including path.)
Answer : A
After creating a new Docker network using the following command:
docker network create --driver bridge isolated_nw
which parameter must be added to docker create in order to attach a container to the network?
Answer : D
After setting up a data container using the following command:
docker create -v /data --name datastore debian /bin/true
how is an additional new container started which shares the /data volume with the datastore container?
Answer : C