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
JoyousElephant80
Moderator
2 Questions, 7 Answers
  Active since 10 January 2023
  Last activity one year ago

Reputation

0

Badges 1

7 × Eureka!
0 Votes
3 Answers
557 Views
0 Votes 3 Answers 557 Views
3 years ago
0 Votes
14 Answers
461 Views
0 Votes 14 Answers 461 Views
Hi, is the source of the Dockerfile used to build the clearml server Docker image available somewhere? Searching through the GitHub organization I wasn't abl...
3 years ago
0 Hi, Is The Source Of The

Ah, that's unfortunate.

We have a product that has a small ML component that provides a way for the end-user to train a model on their own data.

We would like to use the ClearML Server to track experiments run by the end user. We'll have to make sure that our product sends results correctly to the ClearML Server we are running locally.

We do development with docker-compose , so we'd like to run the various ClearML Server containers in our own docker-compose setup (instead of us...

3 years ago
0 Hi, Is The Source Of The

Without the Dockerfile available, I'll have to poke around the the actual clearml Docker image.

3 years ago
0 Hi, Is The Source Of The

SuccessfulKoala55 Ah, that makes sense. It is possible we won't have any of those sorts of tasks, so it sounds like it may be possible we won't need the agent-services container running.

I'll have to keep this in mind though in case we do end up needing something like this.

3 years ago
0 Hi, Is The Source Of The

SuccessfulKoala55 Yes, I believe adding an option to configure the apiserver service name using an environment variable would be helpful. Thanks.

Currently I had added a network alias, but I'll have to see if extra_hosts is easier to use.

3 years ago
0 Hi, Is The Source Of The

It seems like the clearml docker image (and the docker-compose.yaml file provided in the allegroai/clearml-server repo) make some assumptions about container names and ports.

I wanted to look through the Dockerfile to see how the clearml-server image is constructed, in order to see how much flexibility there is to set different values through environment variables or config files.

3 years ago
0 Hi, Is The Source Of The

SuccessfulKoala55 Thanks for the offer! You're correct, I am interested in more of the actual server configuration, rather than just the Dockerfile .

So I have poked around a little in the Docker image, so I have a very basic idea of how things are working together.

I have two main questions:

In the allegroai/clearml image, it appears that the /etc/nginx/nginx.conf file hard-codes the name of the apiserver container to, well, apiserver . But in my ` docker-c...

3 years ago