Docker + NGINX
In my situation, the problem was nginx docker container disk space. I had 10GB of logs and when I reduce this amount it works.
Step by step (for rookies/newbies)
-
Enter in your container:
docker exec -it <container_id> bash
-
Go to your logs, for example:
cd /var/log/nginx
. -
[optional] Show file size:
ls -lh
for individual file size ordu -h
for folder size. -
Empty file(s) with
> file_name
. -
It works!.
For advanced developers/sysadmins
Empty your nginx log with > file_name
or similar.
Hope it helps