Here is the list of the top 5 Docker commands to start running containers.
Docker run
Docker stop
Docker rm
Docker exec
Docker image
This command is used to create and run a new container from an image.
docker container run [OPTIONS] IMAGE [COMMAND] [ARG...]
This command is used to stop one or more running containers.
docker container stop [OPTIONS] CONTAINER [CONTAINER...]
This command is used to remove one or more containers.
docker container rm [OPTIONS] CONTAINER [CONTAINER...]
This is used to execute a command in a running container.
docker container exec [OPTIONS] CONTAINER COMMAND [ARG...]
This is used to list all the images that are currently available on your system.
docker image