Hi everyone, I attempting to run datahub docker qu...
# troubleshoot
a
Hi everyone, I attempting to run datahub docker quickstart with the --quickstart-compose-file option and I got the following error "Unable to run quickstart - the following issues were detected: - quickstart.sh or dev.sh is not running." This has previously worked for me but this time as I was trying to go from v0.9.0 to v0.9.2 it didn't. I opened the log file in the error message but its blank and empty so there nothing for me to go off of.
i
Hello Fleurevca, If you read the line just above the red sentence you will see the root cause:
Copy code
Error processing tar file … no space left on device
This means your docker process has run out of disk. You need to clean up some old images. I usually do that with
docker system prune --volumes
from time to time. It will delete images in your local machine. This may include any image you have built locally so be careful with it. Alternatively you can run
docker rmi <image ids>
for the images you know you don’t want.