Docker volume: backup
I have created a volume container. And a container which mounts to en from the volume container. Volume container: docker run -d --name nexus-data nexus:1.0 echo "data-only container for Nexus" My Nexus container: docker run -d -p 8443:8443 -p 8081:8081 --name nexus --restart=always --volumes-from nexus-data nexus:1.0 So this is working fine. I'm able to delete and recreate my nexus-container without losing data. The volume container (which isn't in running state) is saving the data. But the bottleneck of this approach is the volume-container. When I accidentally delete this container, all the