From 943e9651da8b33c53f5c81f4177b2e96173268b4 Mon Sep 17 00:00:00 2001 From: shockrah Date: Tue, 13 May 2025 18:40:12 -0700 Subject: [PATCH] Swapping the health container to our own thing it's just nginx on port 8080 :) --- infra/nigel-nomad/sanity-service.nomad.hcl | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/infra/nigel-nomad/sanity-service.nomad.hcl b/infra/nigel-nomad/sanity-service.nomad.hcl index 370681b..f0a0e4f 100644 --- a/infra/nigel-nomad/sanity-service.nomad.hcl +++ b/infra/nigel-nomad/sanity-service.nomad.hcl @@ -1,5 +1,5 @@ # This 'service' job is just a simple nginx container that lives here as a kind of sanity check -# PORT: 8000 +# PORT: 8080 # DNS : sanity.nigel.local job "health" { type = "service" @@ -8,8 +8,7 @@ job "health" { count = 1 network { port "http" { - static = 8000 - to = 80 + static = 8080 } } @@ -23,7 +22,7 @@ job "health" { driver = "docker" config { - image = "nginx:latest" + image = "shockrah/sanity:latest" ports = [ "http" ] } }