List volumes of Docker container -


how can list volumes of docker container? understand should easy cannot find how.

also, possible volumes of deleted containers , remove them?

you can use docker ps, container id , write:

$ docker inspect container_id

like here:

"volumes": {   .. }, "volumesrw": {   .. } 

it give volumes of container.


Comments

Popular posts from this blog

apache - PHP Soap issue while content length is larger -

asynchronous - Python asyncio task got bad yield -

javascript - Complete OpenIDConnect auth when requesting via Ajax -