We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If there are 2 containers with their volumes mounted at the same path like this:
services: app1: volumes: - volume-1:/data # ... app2: volumes: - volume-2:/data # ...
And the volumes are backed up with the same location like this:
locations: docker-volumes: from: - volume-1 - volume-2 type: volume # ...
Will volume-2's data overwrite volume-1's? Do we need to put them in different locations?
volume-2
volume-1
The text was updated successfully, but these errors were encountered:
No branches or pull requests
If there are 2 containers with their volumes mounted at the same path like this:
And the volumes are backed up with the same location like this:
Will
volume-2
's data overwritevolume-1
's? Do we need to put them in different locations?The text was updated successfully, but these errors were encountered: