without haste but without rest

docker no left space on device 본문

DevOps/Docker

docker no left space on device

JinungKim 2022. 2. 8. 12:30

https://stackoverflow.com/questions/30604846/docker-error-no-space-left-on-device

 

Docker error : no space left on device

I installed docker on a Debian 7 machine in the following way $ echo deb http://get.docker.io/ubuntu docker main > /etc/apt/sources.list.d/docker.list $ sudo apt-get update $ curl -sSL https:/...

stackoverflow.com


도커 볼륨이 가득차서 inode가 full인 상태라 발생하는 에러다.

터미널에서 'df -l ' 명령어를 입력하면 현재 inode가 full인 것을 확인할 수 있다.

테스트 환경이면 첫 번째 답변인 'docker system prune' 커맨드로 밀어버리는 게 가장 확실하다. 


Comments