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
Profile picture
SuperiorOtter59
Moderator
1 Question, 2 Answers
  Active since 30 November 2024
  Last activity 26 days ago

Reputation

0

Badges 1

2 × Eureka!
0 Votes
3 Answers
158 Views
0 Votes 3 Answers 158 Views
one month ago
0 Hi, I Want To Run A Task In A Docker:Dind Container (Runs Alpine Linux As Os) And Setup Python There Via The Setup Shell Script. However, When Running The Task The Setup Script Seems To Use Bash As Default Command, While Alpine Does Not Support Bash Scri

I run the clearml agent with clearml-agent daemon --queue cpu_docker --docker . The file docker-entrypoint.sh is part of the docker image docker:dind .
From the log files it appears that clearml runs the setup shell script as bash script ... '--rm', 'docker:dind', 'bash', '-c', ... . However, the docker container does not have bash installed, but runs only sh.

one month ago