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 Folks! How Do We Get

Hi folks! How do we get clearml-session to run in a private docker image from a private container registry, in particular from an AWS ECR , please?
Very useful if we want to use our own images but not publish them publicly.
None has --docker parameter, but I don’t know how to tell it where to fetch the image or how to pass credentials…

  
  
Posted one year ago
Votes Newest

Answers 2


Hi @<1546665634195050496:profile|SolidGoose91> , the way to go about that (anywhere where a ClearML Agent is involved, which includes clearml-session) is to provide the full docker image name (i.e. including the repository) and making sure the agent pulling the image either runs on an EC2 machine with a role allowing it to access the repository (or credentials provided in a configuration file), and an initial bash script for the agent container itself calling docker login at a first step.

  
  
Posted one year ago

Amazing, thanks a lot @<1523701087100473344:profile|SuccessfulKoala55> !

  
  
Posted one year ago