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 All, I Am Trying To Deploy Clearml Server In A Local Machine. I Followed All The Steps In

Hi all, I am trying to deploy ClearML server in a local machine.
I followed all the steps in None
but when I went to the last step, the step docker-compose -f /opt/clearml/docker-compose.yml up -d
I got the error:

docker-compose -f /opt/clearml/docker-compose.yml up -d
WARNING: The CLEARML_AGENT_GIT_USER variable is not set. Defaulting to a blank string.
WARNING: The CLEARML_AGENT_GIT_PASS variable is not set. Defaulting to a blank string.
WARNING: Some services (agent-services) use the 'deploy' key, which will be ignored. Compose does not support 'deploy' configuration - use `docker stack deploy` to deploy to a swarm.
ERROR: Couldn't connect to Docker daemon at 
 - is it running? 

Did I miss anything?

sudo systemctl status docker
● docker.service - Docker Application Container Engine
     Loaded: loaded (/lib/systemd/system/docker.service; enabled; vendor preset: enabled)
     Active: active (running) since Thu 2024-07-18 09:03:37 MDT; 23min ago
docker-compose --version
docker-compose version 1.24.1, build 4667896b
  
  
Posted one month ago
Votes Newest

Answers 2


For whoever gets the same issue, I solved it by adding my user to the docker group.
sudo usermod -aG docker $USER
(restart the session)
sudo service docker restart

  
  
Posted one month ago

nice @<1724960458047229952:profile|EnergeticKoala33> !
The issue was that the agent was trying to start the docker but had no credentials to do that, your solution is exactly what was needed to be done

  
  
Posted one month ago
202 Views
2 Answers
one month ago
one month ago
Tags