skip to Main Content

Make Docker ignore daemon.json configuration on start

Currently we have multiple docker containers(host A). We send the logs from each docker container to logger(which is runs on docker container on another server). Here is my daemon.json: { "log-driver":"gelf", "log-opts":{ "gelf-address":"tcp://10.*.*.*:12201" }, "dns":[ "10.*.*.*" ], "icc":false } The…

VIEW QUESTION

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}"…

VIEW QUESTION
Back To Top
Search