Intern
48. Command to start a container? docker start; docker continue; docker init; docker run; 49. How to view the list of running docker containers? docker ps; docker ls; docker ll; docker –procces; 50. What is CI/CD? A monitoring tool for OS; A methodology that combines continuous integration and deployment processes;
sobes.tech AI
Answer from AI
- Command to start a container:
docker run
This command creates and starts a new container.
- How to view the list of running docker containers:
docker ps
The docker ps command displays a list of all running containers.
- What is CI/CD?
CI/CD is a methodology that combines continuous integration (CI) and continuous deployment/delivery (CD). It automates the building, testing, and delivery of software, increasing the speed and quality of releases.