aboutsummaryrefslogtreecommitdiff
path: root/app/im/deploy/im.hcl
blob: 09d840be811cb8c8bca2b54f51ac03abf52e6aaf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
job "im" {
  datacenters = ["neptune"]
  type = "service"
  
  group "synapse" {
    count = 1

    constraint {
      attribute = "${attr.unique.hostname}"
      operator = "="
      value = "cariacou"
    }

    network {
      port "http" {
        to = 8008
      }
    }

    task "synapse" {
      driver = "docker"
      config {
        image = "matrixdotorg/synapse:v1.48.0"
        ports = [ "http" ]
        volumes = [
          "/mnt/ssd/synapse:/data",
        ]
      }
    }


    service {
      port = "http"
      tags = [
        "tricot matrix.home.adnab.me 100",
        "tricot matrix.home.adnab.me:443 100",
        "tricot matrix.home.adnab.me:8448 100",
        "tricot-add-header Access-Control-Allow-Origin *",
      ]
      check {
        type = "http"
        path = "/"
        interval = "10s"
        timeout = "2s"
      }
    }
  }
}