0 votes
in Docker by

How can you share storage volumes between containers?

a) Using --volumes-from

b) Using --share-storage

c) Using --link

d) Using --connect-volumes

1 Answer

0 votes
by
a) Using --volumes-from

Explanation:

The --volumes-from option allows a container to mount the volumes from another container, enabling data sharing between containers.
...