diff --git a/jobs/services/wetty.hcl b/jobs/services/wetty.hcl new file mode 100644 index 0000000..8ada614 --- /dev/null +++ b/jobs/services/wetty.hcl @@ -0,0 +1,51 @@ +job "wetty" { + datacenters = ["aperture"] + + type = "service" + + group "wetty" { + count = 1 + + network { + port "http" { + to = 3000 + } + } + + service { + name = "wetty" + port = "http" + + check { + type = "http" + path = "/" + interval = "10s" + timeout = "2s" + } + + tags = [ + "traefik.enable=true", + "traefik.http.routers.wetty.rule=Host(`wetty.rb.dcu.ie`)", + "traefik.http.routers.wetty.entrypoints=web,websecure", + "traefik.http.routers.wetty.tls.certresolver=lets-encrypt", + ] + } + + task "wetty" { + driver = "docker" + + config { + image = "wettyoss/wetty" + ports = ["http"] + } + template { + destination = "local/.env" + env = true + data = <