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, Is There A Way To Instantiate A

Hi,
Is there a way to instantiate a clearml-task while providing it a Dockerfile that it needs to build prior to executing the task?
I know that there is a an option to use --docker <docker-image-to-pull> but then this requires to
Build the image prior to running Push image to repository which then needs to be Pulled prior to executing the taskIs there any other workflows using docker that are available?

  
  
Posted one year ago
Votes Newest

Answers


Hi OutrageousSheep60

Is there a way to instantiate a

clearml-task

while providing it a

Dockerfile

that it needs to build prior to executing the task?

Currently not really, as at the aned the agent does need to pull a container,
But you can cheive basically the same by adding the "dockerfile" script as --docker_bash_setup_script Notice of course that this is an actual bash script not Docker script, so no need for "RUN" prefix.
wdyt?

  
  
Posted one year ago
891 Views
1 Answer
one year ago
one year ago
Tags