Fill in the Black
Commands
Docker-
Throwback
Wild
100

Docker _________, by design, are self-contained packages that include everything needed to run the application they are designed to execute.

images

100

This command allows you to see the list of all running containers.

docker container ls

100

What are the 2 Docker versions available for download?

Docker CE (Community Edition) & Docker EE (Enterprise Edition)

100

SQL: ____ command is used to rename a column or table with an alias

AS

100

Who painted the Mona Lisa?

Leonardo da Vinci

200

Data _________ containers allow you to share the volume(s) mounted in one Docker container with other containers.

volume

200

This instruction is used to change the current working directory for both the image and the resulting container.

WORKDIR

200

What is the name of a centralized location for storing and retrieving Docker images?

Docker registry

200

JS: How do you call a function named "myFunction"?

myFunction()  

200

What is the largest planet in our solar system?

Jupiter

300

The ______command has wider functionality than the _______command.

COPY / ADD

300

This command allows you to create the Docker image based on the content found in the Dockerfile.

docker image build

300

What is the name of a folder that exists on the Docker host and is mounted and accessible inside a running Docker container?

Docker volume

300

API: What does REST stand for?

Representational State Transfer

300

Which command is used to delete a container even if it’s running?  


docker container rm -f [container_name]

docker container delete [container_name]

docker container destroy --force [container_name]

docker remove [container_name]

docker container rm -f [container_name]

400

Instructions are evaluated in _________order.

sequential

400

This command is used to run Docker daemon.

sudo systemctl start docker

400

What is the name of the text file that contains instructions used by the Docker daemon to create a Docker image?

Dockerfile

400

CSS: Assign the animation named blue-text to your aside.

aside {

animation-name: blue-text;

}

400

Where did I go for New Years?

Maimi

500

The ____  _____  _____command is used to remove all the unused volumes in docker.

docker volume prune

500

This command can be used to list the volumes not associated with any containers.

docker volume ls --filter dangling=true

500

Which command is used to run hello-world docker container?

docker container run hello-world

500

Django:Which method needs to be overridden to add URL mapping for custom AdminSite view?

get_urls()

500

Whats my favorite spirit?

Tequila

M
e
n
u