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
Hello, Is There A Way To Completely Disable The Apt Update At The Start Of A Training?

Hello,

Is there a way to completely disable the apt update at the start of a training?

  
  
Posted one year ago
Votes Newest

Answers 4


Are you referring to a task being run by an agent running in docker mode? Where is the agent deployed?

  
  
Posted one year ago

This is part of the default bash script used by the agent. You can replace that script completely, just make sure to do what the agent does there in order to start the task... Use the agent.docker_init_bash_script configuration option to specify an alternate script

  
  
Posted one year ago

Yes, thank you. That's exactly what I'm refering to.

The agent is deployed on our on-premise machines

  
  
Posted one year ago

You can inspect the docker image to get the bash script that's used by default and simply set a custom script without the apt-get update line

  
  
Posted one year ago
620 Views
4 Answers
one year ago
one year ago
Tags