technologiq Posted August 25, 2015 Share Posted August 25, 2015 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
steini84 Posted August 25, 2015 Share Posted August 25, 2015 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 Link to comment
trurl Posted August 25, 2015 Share Posted August 25, 2015 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
technologiq Posted August 25, 2015 Author Share Posted August 25, 2015 Perfect - thank you both! Link to comment
Recommended Posts
Archived
This topic is now archived and is closed to further replies.