flyctl deploy: "no space left on device"

When running: flyctl deploy I’m getting:

Error error building: error rendering build status stream: Error processing tar file(exit status 1): open /build/node_modules/spdy-transport/lib/spdy-transport/protocol/spdy/constants.js: no space left on device

Is there a way to ssh into builder app to free up some space?

You can ssh in while it’s running, but it’s easier to delete it and let a new one come up on the next build.

You can find the builder name with

flyctl apps list | grep builder

and delete with

flyctl apps destroy {name}
1 Like

Sweet, thanks a lot Micheal!