Docker volume drivers
We created Docker volumes and we put them to use in our containers. By inspecting the volume in the previous example, we can get some valuable information:
$ docker volume inspect example-volume [ { "CreatedAt": "2022-03-08T07:01:29Z", "Driver": "local", "Labels": {}, "Mountpoint": "/var/lib/docker/volumes/example-volume/_data", "Name": "example-volume", "Options": {}, "Scope": "local" } ]
Here, "Driver"
is set to "local"
; this means that the...