
* Add forcePull option for pulling the image when the execution environment gets updated * Apply suggestions from code review Co-authored-by: Sebastian Serth <MrSerth@users.noreply.github.com> * Add unit tests * Clean up and implement option two Co-authored-by: Sebastian Serth <MrSerth@users.noreply.github.com>
20 lines
280 B
HCL
20 lines
280 B
HCL
client {
|
|
enabled = true
|
|
servers = [
|
|
"server domain 1",
|
|
"server domain 2"
|
|
]
|
|
}
|
|
|
|
plugin "docker" {
|
|
config {
|
|
gc {
|
|
image_delay = "0s"
|
|
}
|
|
|
|
# auth {
|
|
# config = "/root/.docker/config.json"
|
|
# }
|
|
}
|
|
}
|