culTest

    One of the 50 questions in this topic

    How much do you know about Docker?

    What is a bind mount in Docker?

    Answers

    A way to connect containers
    A method to mount a host directory into a containerCorrect
    A type of Docker network
    A resource constraint

    A bind mount in Docker is a method of mounting a host system directory or file directly into a container. Unlike volumes, which are managed by Docker, bind mounts depend on the host's directory structure, making them useful for development where immediate access to host files is needed.