culTest

    One of the 50 questions in this topic

    How much do you know about Docker?

    What command starts the services defined in docker-compose.yml?

    Answers

    docker-compose start
    docker-compose run
    docker-compose upCorrect
    docker-compose begin

    The docker-compose up command starts all the services defined in the docker-compose.yml file. Creates and starts the defined containers, networks, and volumes. With the -d option, containers run in the background (detached mode).