1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

macOS: "docker-compose build" -> Error "no space left on device"

Last updated at Posted at 2016-10-18

Quick Fix

docker rmi -f $( docker images | grep '<none>' | tr -s ' ' | cut -d ' ' -f 3)

Error Message

I got "no space left on device" error after "docker-compose build".

% docker-compose build

(snip)

Done, without errors.
 ---> d26d5bc0fdf4
Removing intermediate container 78dbd36b4e32
Step 6 : WORKDIR /eth-netstats
 ---> Running in 3ace9fe7e2dc
 ---> c80b7998173d
Removing intermediate container 3ace9fe7e2dc
Step 7 : CMD npm start
 ---> Running in 3a27d2dab885
 ---> afd803cc68aa
Removing intermediate container 3a27d2dab885
Successfully built afd803cc68aa
Building node
Step 1 : FROM python:2.7.9
2.7.9: Pulling from library/python
e5ad7970bc69: Extracting [=========>                                         ] 9.961 MB/51.37 MBBnload complete
0a7eeedff1c5: Download complete
bbe5878d8681: Download complete
1df3bb332f6a: Downloading [==================================================>] 160.4 MB/160.4 MBnload complete
66827c4496e3: Download complete
d53e9c58fa7d: Downloading [==================================================>] 19.42 MB/19.42 MBnload complete
ERROR: Service 'node' failed to build: write /var/lib/docker/tmp/GetImageBlob558874378: no space left on device

Ref

Docker on Mac OS X: 'No space left on device' error
http://dmuso.com/2015/11/08/docker-on-mac-no-space-left-on-device.html

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?