So in my current app setting a certain process running inside a container runs another process. I need to set the nice value of the new process to be higher.
When ran on the OS I could just do
nice -n19 second_task
. How does this work in the context of the docker container?