-
Notifications
You must be signed in to change notification settings - Fork 134
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
OSError: [Errno 28] No space left on device on docker-compose build step #9
Comments
Mine is not solved yet
|
Same here, with 8Gb of temporal size. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
when I issued
docker-compose build
after a few seconds I got the error below.and
After some digging, I find out docker-compose complains about the size of temp directory (which is mounted to
/tmp
and RAM backed in my case) (see: https://stackoverflow.com/q/38619286 )also
# mount -o remount,size=7G,noatime /tmp
was enough to solve the issue in my case. (I beleive docker-compose tries to create a temporary archive around 5GB and my default tmpfs size is 4GB)PS. onening this issue for future reference only, I've managed to run server on my old Asus k53sv with 8GB of RAM
OS: ArchLinux x86_64 (linux 4.17.2-1 & systemd 238.133-4)
Docker Version: 18.05.0-ce build f150324782
The text was updated successfully, but these errors were encountered: