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
How Can I Use Multiple Docker Args In The Clearml-Task Cli?

how can i use multiple docker args in the clearml-task cli?

--docker_args '-v=some_dir:other_dir'  -----> a single value works fine
--docker_args '-v=some_dir:other_dir-v=some_dir:other_dir' -----> doesn't work well
--docker_args '-v=some_dir:other_dir,-v=some_dir:other_dir' -----> doesn't work well
--docker_args '-v=some_dir:other_dir;-v=some_dir:other_dir' -----> doesn't work well
--docker_args ['-v=some_dir:other_dir', '-v=some_dir:other_dir'] -----> doesn't work well

what is the proper syntax? and why isn't it documented? you are just mentioning "pass a single string"...
thanks for the help
  
  
Posted 21 days ago
Votes Newest

Answers


update:
--docker-args "-v some_dir:other_dir -v some_dir:other_dir" is the correct format

  
  
Posted 21 days ago
102 Views
1 Answer
21 days ago
21 days ago
Tags