Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escaping: Escape characters +-&|!(){}[]^"~*?:\ with \, e.g. \+
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text
Answered
Hi There. When Trying To Launch My Specific Docker, It Fails Launching Clientml-Agent Inside The Container Due To This...

Hi there. When trying to launch my specific docker, it fails launching clientml-agent inside the container due to this... cp: failed to access '/root/default_clearml.conf': Permission denied how to specify volume to mount -v option of the docker ? Where can i find doc to do this ? My docker is run as "user", so it can't read /root but how can i change that ?

  
  
Posted one year ago
Votes Newest

Answers 10


I think i have my answer, this is hard coded in agent base_cmd += ( (['--name', name] if name else []) + ['-v', conf_file+':'+DOCKER_ROOT_CONF_FILE] + (['-v', host_ssh_cache+':'+mount_ssh] if host_ssh_cache else []) + ...

  
  
Posted one year ago

Hi MotionlessCoral18
Are you running the agent inside a container?
Would you mind to share your Dockerfile?

  
  
Posted one year ago

I tried to modify all docker_internal_mounts point but the mount point for clearm.conf file still remains the same. May be it is defined on server side ?

  
  
Posted one year ago

I don't undestand why after specifying /root/clearml.conf , a copy is required to /root/default_clearml.conf . I modified in the code this copy by one that takes a user mounting point and copies it to home directory ~/clearml.conf

  
  
Posted one year ago

MotionlessCoral18 I think there is a fix in the latest clearml-agent RC 1.4.0rc0 can you test and update if your are still having this issue?

  
  
Posted one year ago

But this is not copy, this is mount, your log showed cp failing

  
  
Posted one year ago

I saw this part of the configuration file but i don't know exactly which key is used as mount point for configuration file ?

  
  
Posted one year ago

Hmm I think you have a point here, the confusing part is the cp cmd. Can you send the full log? (Regradless , can I assume you are running a rootless container ?)

  
  
Posted one year ago

But after all these modifications, i succeeded in using the clearml-agent. 👍 Great job ! Thank to the clearml team.

  
  
Posted one year ago