Manage Docker volumes. Refer to PERSISTENT to learn more about volume storage and permissions.
Use docker volume ls to list volumes.
Copies data from one volume to another.
make volume-cp VOLUME_FROM=<from_volume> VOLUME_TO=<to_volume>💡 Restart containers to see changes.
Removes a volume by name.
make volume-rm VOLUME=<volume_name>Remove a volume by NAMESPACE and SERVICE.
make volume-rm-service NAMESPACE=yourproject SERVICE=storageBackup a volume by NAMESPACE and SERVICE at the ./backup directory.
make volume-backup-service NAMESPACE=yourproject SERVICE=storageRestore a volume by NAMESPACE and SERVICE at the ./backup directory.
make volume-restore-service NAMESPACE=yourproject SERVICE=storage