job "style-thelook" { datacenters = ["aperture"] type = "service" meta { domain = "thelookonline.dcu.ie" } group "thelook" { count = 1 network { mode = "bridge" port "http" { to = 80 } port "fpm" { to = 9000 } port "db" { to = 3306 } port "redis" { to = 6379 } } service { name = "thelook-web" port = "http" check { type = "http" path = "/" interval = "10s" timeout = "5s" } tags = [ "traefik.enable=true", "traefik.http.routers.thelook.rule=Host(`${NOMAD_META_domain}`)", "traefik.http.routers.thelook.entrypoints=web,websecure", "traefik.http.routers.thelook.tls.certresolver=lets-encrypt", ] } task "thelook-nginx" { driver = "docker" config { image = "nginx:alpine" ports = ["http"] volumes = [ "local/nginx.conf:/etc/nginx/nginx.conf", "/storage/nomad/style-thelook:/var/www/html/", ] group_add = [82] # www-data in alpine } resources { cpu = 200 memory = 100 } template { data = <