culTest

    One of the 50 questions in this topic

    How much do you know about Docker?

    What command is used to start a Docker container?

    Answers

    docker start
    docker runCorrect
    docker begin
    docker execute

    The docker run command is used to create and start a new container from an image. If the image is not available locally, Docker will try to download it from the configured registry. This command combines docker create and docker start into a single operation.