最佳答案
I have a web application launched using Docker compose that I want to disable all logging for (or at the very least print it out to syslog instead of a file).
When my web application works it can quickly generate an 11GB log file on startup so this eats up my disk space very fast.
I'm aware that normal docker has logging options for its run command but in Docker Compose I use
docker-compose up
in the application folder to start my application. How would I enable this functionality in my case? I'm not seeing a specific case anywhere online.