Open edx crushes on my AWS server with 500 error

My site has been running for a few days now due to traffic the system has crushed. I am assuming I have several docker images created on my server and I am out of space anyone has an idea how I could maintain this and get rid of unnecessary docker images. After running a command to create a folder in ssh I receive.
fwrite: No space left on device

[27939] INTERNAL ERROR: cannot create temporary directory!

1 Like

As you noticed, you should increase the size of yoru EBS volume. If you’d like to clear your disk of unused docker images and containers, you can always run:

docker image prune
docker container prune
2 Likes