0 votes
in Docker by

What is a Docker container?

a) A running instance of a Docker image

b) A lightweight virtual machine

c) A storage volume

d) A service running on Docker Swarm

1 Answer

0 votes
by

a) A running instance of a Docker image

Explanation:

A Docker container is a running instance of a Docker image, which is an executable package that includes everything needed to run a piece of software, including the code, libraries, environment variables, and config files.

...