2020-09-21 01:42:35 +00:00
|
|
|
services {
|
|
|
|
id = "nexus"
|
|
|
|
name = "nexus"
|
|
|
|
port = 8081
|
|
|
|
checks = [
|
|
|
|
{
|
|
|
|
args = ["nc", "-z", "-v", "localhost", "8081"]
|
|
|
|
interval = "5s"
|
|
|
|
timeout = "20s"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|
2020-09-21 03:03:54 +00:00
|
|
|
services {
|
|
|
|
id = "docker"
|
|
|
|
name = "docker"
|
|
|
|
port = 8082
|
|
|
|
checks = [
|
|
|
|
{
|
|
|
|
args = ["nc", "-z", "-v", "localhost", "8082"]
|
|
|
|
interval = "5s"
|
|
|
|
timeout = "20s"
|
|
|
|
}
|
|
|
|
]
|
|
|
|
}
|