-
Notifications
You must be signed in to change notification settings - Fork 18.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docker disk usage #12265
Comments
We also notice the problem too. We use device mapper, and this is our $DOCKER/devicemapper/mnt:
We only run two container:
Docker Info:
Docker Version:
|
have a try use a newer docker version? |
I'm trying to determine if this is related to #11113 and #10991, or at least this part:
|
@corradio could you provide the output of Also (If you're not already doing so), could you try and test with the current release or release-candidate of docker? |
uname -a: Linux infra1-par 3.13.0-36-generic #63-Ubuntu SMP Wed Sep 3 21:30:07 UTC docker -D info: Containers: 22 Olivier Corradi On 10 April 2015 at 14:39, Sebastiaan van Stijn notifications@github.com
|
Thanks, looks like you missed |
Sorry, here's the output of Client version: 1.5.0 Olivier Corradi On 10 April 2015 at 15:06, Sebastiaan van Stijn notifications@github.com
|
Thanks, @corradio. I have labeled this as bug, but there's a chance that this is an existing issue; there are a number of issues related with Docker sometimes not properly unmounting containers filesystems. /ping @unclejack perhaps you know if this is already tracked by an existing issue (and which one) |
We have similar problems with btrfs driver:
|
we use docker as a build system. currently I have to delete /var/lib/docker once a week or so, because of this image leakage. |
root@gitlabcirunner2:/var/lib# docker version happens with aufs and had the problem with devicemapper as well |
Is this related to docker-in-docker? Note that with devicemapper you cannot use a static docker binary, as it will cause corruption issues leading to just this. Is this still a problem? |
Is this still an issue with the current release? |
i.e., is anybody here still having this issue with the current release? |
@poelzi @stevenschlansker @corradio Are you still seeing this issue? |
@thaJeztah @bfirsh We certainly still have disk space issues, although it's not entirely clear what / why it remains a problem. Since the opening of this issue we've transitioned to the Concerns we still have:
In short, this is still a pain point for us, although it's not clear that this issue in particular still tracks anything for us. |
@stevenschlansker Thanks. You might want to watch this to keep an eye on latest updates with your 3rd concern: #18601 |
Given that the issues mentioned in #12265 (comment) are already tracked through separate issues, let me close this issue to not duplicate things. |
I faced the same problem like @corradio. /var/lib/docker/aufs/mnt/ tooks a lot of disk space:
I only run 8 containers, but there are 80 directories in /var/lib/docker/aufs/mnt/, maybe this is the problem:
I removed stopped containers, untagged images and unused volumes, but nothing helps. Do I have to restart docker to solve it? I have the problem in production environment... And I checked docker#12265 (comment) , in fact, they seem not exactly the same as our problem.
|
I reduced the disk usage from 83% to 19% by just restarting docker sudo restart docker Why does this happen? In addition, it is not a good idea to restart docker in production environment. Is there any better solution? |
@kiwenlau it's quite likely that for some reason when those container shutdown, docker couldn't remove the directory because the The reason it disappeared after a restart, is that daemon probably tried and succeeded to clean up left over data from stopped containers. |
@mlaventure Thx! I've checked the kernel version, it's 3.13.
I will probably update the kernel to completely solve the problem. |
👍 |
docker system prune --volumes -f |
This will delete all the containers, volumes, networks. Beware!! |
The /var/lib/docker/aufs/mnt folder takes a lot of disk space which is not cleared when removing images, containers and volumes. Upon docker restart, the mnt folder is cleared.
How come there's such a leak? Maybe there should be a way to clean the mnt folder?
The text was updated successfully, but these errors were encountered: