When I run this command on my debian server :
sudo docker exec -it production_mongo_1 mongodump --uri="mongodb://[URI]@localhost/[DB]" --out="/data/db"
all my mongod --auth --bind_ip_all processes start to consume a lot of memory on my server and don't come down after finishing the dump. I don't know how to solve this problem.
I've already tried to understand the logs generated by mongodb (no results). I tried to modify my dump request without success either.