job "api" { datacenters = ["aperture"] type = "service" group "api" { count = 1 network { port "http" { to = 80 } } service { name = "api" port = "http" check { type = "http" path = "/" interval = "10s" timeout = "2s" } tags = [ "traefik.enable=true", "traefik.http.routers.api.rule=Host(`api.redbrick.dcu.ie`)", "traefik.http.routers.api.entrypoints=web,websecure", "traefik.http.routers.api.tls.certresolver=lets-encrypt", ] } task "api" { driver = "docker" config { image = "ghcr.io/redbrick/api:latest" ports = ["http"] volumes = [ "/oldstorage:/storage", "/oldstorage/home:/home", "local/ldap.secret:/etc/ldap.secret", ] auth { username = "${DOCKER_USER}" password = "${DOCKER_PASS}" } } template { destination = "local/.env" env = true change_mode = "restart" data = <