Docker _________, by design, are self-contained packages that include everything needed to run the application they are designed to execute.
images
This command allows you to see the list of all running containers.
docker container ls
What are the 2 Docker versions available for download?
Docker CE (Community Edition) & Docker EE (Enterprise Edition)
SQL: ____ command is used to rename a column or table with an alias
AS
Who painted the Mona Lisa?
Leonardo da Vinci
Data _________ containers allow you to share the volume(s) mounted in one Docker container with other containers.
volume
This instruction is used to change the current working directory for both the image and the resulting container.
WORKDIR
What is the name of a centralized location for storing and retrieving Docker images?
Docker registry
JS: How do you call a function named "myFunction"?
myFunction()
What is the largest planet in our solar system?
Jupiter
The ______command has wider functionality than the _______command.
COPY / ADD
This command allows you to create the Docker image based on the content found in the Dockerfile.
docker image build
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
API: What does REST stand for?
Representational State Transfer
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]
Instructions are evaluated in _________order.
sequential
This command is used to run Docker daemon.
sudo systemctl start docker
What is the name of the text file that contains instructions used by the Docker daemon to create a Docker image?
Dockerfile
CSS: Assign the animation named blue-text to your aside.
aside {
animation-name: blue-text;
}
Where did I go for New Years?
Maimi
The ____ _____ _____command is used to remove all the unused volumes in docker.
docker volume prune
This command can be used to list the volumes not associated with any containers.
docker volume ls --filter dangling=true
Which command is used to run hello-world docker container?
docker container run hello-world
Django:Which method needs to be overridden to add URL mapping for custom AdminSite view?
get_urls()
Whats my favorite spirit?
Tequila