⭐ Docker Volume
Image courtesy: https://miro.medium.com/v2/resize:fit:1200/1*xONk464vW-xNYxzE_HsSkw.png
✔Method 1: Creating volume using a Docker file
Create a dockerfile with the following contents:
FROM ubuntu #base image
VOLUME ["/myvolume"] #creating a vol...
akshatashenoy.hashnode.dev2 min read