Log files isn't writable – Docker
I'm creating a website based on Django with Docker. I've a problem whit the management of log files of Gunicorn. With the script below the site runs without problems: #!/usr/bin/env bash cd personal_website exec gunicorn personal_website.wsgi:application --name personal_website --bind 0.0.0.0:"${PROJECT_PORT}"…