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, Can I Default A Docker Image When Running A Pipeline? I Currently Set It As

Hi, can i default a docker image when running a pipeline? I currently set it as
pipe = PipelineController(...) pipe.task.setbase_docker("ubuntu:20:04") pipe.start()but it kept running a rather old version that's running on python3.6. Ends up it couldn't install some prerequisites as it requires python3.8.

  
  
Posted one year ago
Votes Newest

Answers 3


Hi CostlyOstrich36 , What you described is task. I was referring to the pipeline controller.

  
  
Posted one year ago

I just want to verify that it took affect because from my experience the method is task.set_base_docker(docker_image="python:3.9-bullseye")

  
  
Posted one year ago

SubstantialElk6 , Hi 🙂
In the UI do you get ubuntu:20:04 as the docker container for the experiment?

  
  
Posted one year ago
551 Views
3 Answers
one year ago
one year ago
Tags
Similar posts