Hi @<1523715429694967808:profile|ThickCrow29> , how exactly are you running the agent (the exact command line)?
python3 -m clearml_agent --config-file clearml.conf daemon --foreground --queue services --service --docker --cpu-only
root@clement-controller-1:~# head clearml.conf
agent {
default_docker {
arguments: ["-v","/var/run/docker.sock:/var/run/docker.sock"]
}}
And the task you are trying to run, does it have any specific docker image specified in the container section? (you can see in the UI under execution/container)
In that case, this will be taken instead of the the default docker set on the agent. the default docker options are only applied when the task has no container information at all
If you want to add additional docker argument (regardless if the task has any docker image specirfied), use agent.extra_docker_arguments
Which are appended to any existing argument
Neat - it works ! Thanks for the quick response 🚀