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 m
You should be able to use logging feature. Try to set driver to "none"
logging: driver: none
For a quick config example, something like
version: '3' services: 'postgres': image: postgres:9.6 logging: driver: none