How to bring up a docker-compose container as privileged?
I was running my container with the command sudo docker run --privileged container_name . But now I'm using a YML and and the command docker-compose up to bring it up but I don't know how to add the --privileged flag when bringing up the container with that command. I already tried adding privileged: true to the YML but it doesn't work in that case.