Which component in Docker acts as a lightweight, stand-alone, executable software package that includes everything needed to run a piece of software?
- Docker image
- Docker container
- Dockerfile
- Docker daemon
A Docker image is a lightweight, stand-alone, executable software package that includes everything needed to run a piece of software, including code, runtime, system tools, and libraries. Docker containers are instantiated from these images.
Loading...
Related Quiz
- If you want to view detailed information about disk usage for each directory, the __________ command would be appropriate.
- In the context of iptables, what is the purpose of the INPUT chain?
- In the context of performance tuning, what does the 'vm.swappiness' parameter control?
- You've been tasked with writing a script that processes input arguments. How would you check if the number of arguments provided to the script is less than 3?
- To iterate over a range of numbers in a loop, one might use the seq command combined with the _________ loop.