job "dcusr-outline" { datacenters = ["aperture"] type = "service" meta { domain = "outline.solarracing.ie" } group "outline" { network { # mode = "bridge" port "http" { static = 3000 to = 3000 } port "db" { to = 5432 } port "redis" { to = 6379 } } service { name = "outline" port = "http" check { type = "http" path = "/" interval = "10s" timeout = "2s" } tags = [ "traefik.enable=true", "traefik.port=${NOMAD_PORT_http}", "traefik.http.routers.dcusr-outline.rule=Host(`${NOMAD_META_domain}`)", "traefik.http.routers.dcusr-outline.tls=true", "traefik.http.routers.dcusr-outline.tls.certresolver=lets-encrypt", ] } task "app" { driver = "docker" config { image = "docker.getoutline.com/outlinewiki/outline:latest" ports = ["http"] volumes = [ "/storage/nomad/outline/data:/var/lib/outline/data" ] } resources { cpu = 1000 memory = 500 } template { data = <