I use docker run -it -v /xx1 -v /xx2 [image] /bin/bash
to create a container.
Then commit to image and push to docker hub.
use docker inspect [image]
The Volumes
detail is
"Volumes": {
"/xx1": {},
"/xx2": {}
},
Now I want to remove volume /xx1
in this image.
What should I do?