culTest

    One of the 50 questions in this topic

    How much do you know about Docker?

    What command is used to stop a running container?

    Answers

    docker kill
    docker end
    docker stopCorrect
    docker halt

    The docker stop command is used to stop a running container. Sends a SIGTERM signal followed by SIGKILL after a grace period, allowing the application to exit correctly before forcing it to terminate.