I'm doing a server with nodejs and mongodb. I'm using mongodb as a container but I'm trying hide the logs using the next code in docker-compose.yml
mongodb:
image: mongo
logging:
driver: "none"
I tried without quotes but It doesn't works.
Thanks you.