You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current README suggests a 250GB EBS volume but then the docker mountpoints remain on the root partition, leading to this:
649c991eaaea: Download complete
5f19f46d8cc5: Download complete
62d0f44c5410: Download complete
ERROR: write /var/lib/docker/tmp/GetImageBlob606462066: no space left on device
So I'm suggesting adding something like this in the boostrap script for now while a better ansible role is created:
sudo mkfs.ext4 /dev/xvdb
sudo mount /dev/xvdb /mnt
sudo service docker stop
sudo mv /var/lib/docker /mnt
sudo ln -sf /mnt/docker /var/lib/docker
sudo service docker start
The text was updated successfully, but these errors were encountered:
The current README suggests a 250GB EBS volume but then the docker mountpoints remain on the root partition, leading to this:
So I'm suggesting adding something like this in the boostrap script for now while a better ansible role is created:
The text was updated successfully, but these errors were encountered: