Jump to content

View Docker Container Contents?


technologiq

Recommended Posts

Is there any way to mount/view the contents of a container?  One of my docker apps (binhex delugevpn) is gobbling up a ton of space very quickly and I'm trying to figure out what it is (I've verified all my settings and mount points are correct).  If I can see the contents of the container I should be able to figure out what is getting saved there.

 

Thanks.

Link to comment

Sure do a docker ps and get the id of the docker. Then do: docker exec -it docker-Id bash

 

You only need to put in the first couple of letters of the docker id

 

Example:

 

docker exec -it 0ef1 bash

Not necessary to get docker id. Just docker exec -it docker-name bash
Link to comment

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...