Please try to answer the following questions to assess your learning progress:
- How would you create a named data volume with a name—for example, my-products—using the default driver?
- How would you run a container using the alpine image and mount the my-products volume in read-only mode into the /data container folder?
- How would you locate the folder that is associated with the my-products volume and navigate to it? Also, how will you create a file, sample.txt, with some content?
- How would you run another alpine container in to which you mount the my-products volume to the /app-data folder, in read/write mode? Inside this container, navigate to the /app-data folder and create a hello.txt file with some content.
- How would you mount...