culTest

    One of the 50 questions in this topic

    How much do you know about Docker?

    What is a tmpfs mount in Docker?

    Answers

    A temporary mount that is removed on reboot
    A mount that stores data in host memoryCorrect
    A temporary file system for testing
    A read-only assembly

    A tmpfs mount in Docker is a mount that stores data in host memory (or swap if necessary) instead of the persistent file system. It is useful for temporary, sensitive, or high-performance data that does not need to persist beyond the container's lifecycle, such as session or cache files.