- Newest
- Most votes
- Most comments
Hello.
Although this is a temporary solution, I thought that if I set a large size of computing to the Codebuild build, the disk capacity would increase, so I could avoid the error.
https://docs.aws.amazon.com/codebuild/latest/userguide/build-env-ref-compute-types.html
Are you using local cache with Codebuild?
This is just my prediction, but I thought that when using local cache, past data may remain and take up space on the disk.
https://aws.amazon.com/jp/blogs/devops/improve-build-performance-and-save-time-using-local-caching-in-aws-codebuild/
I think there is a possibility that the Inode is being used up, so try running the following command before building to erase the data.
docker exec front df -i
docker volume rm $(docker volume ls -qf dangling=true)
This might be helpful too :- https://medium.com/@debolek4dem/how-to-troubleshoot-aws-codebuild-error-no-space-left-on-device-b9016b6986bc
Relevant content
- asked a year ago
- asked 5 months ago
