summaryrefslogtreecommitdiff
path: root/jobs/syncthing.nomad.hcl
blob: 98f554de0470bd1eb570e1577827a3c49b1af92e (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
49
50
51
52
job "syncthing" {
  group "syncthing" {
    count = 1

    network {
      port "http" {
        to = 8384
      }
      port "sync" {
        static = 22000
      }
      port "discovery" {
        static = 21027
      }
    }

    service {
      name     = "syncthing-web"
      port     = "http"
      provider = "nomad"

      tags = [
        "nginx.hostname=syncthing.magnusson.space",
        "nginx.certname=magnusson.space",
      ]
    }

    volume "syncthing" {
      type   = "host"
      source = "syncthing"
    }

    task "syncthing" {
      driver = "docker"

      resources {
        cpu    = 100
        memory = 150
      }

      volume_mount {
        volume      = "syncthing"
        destination = "/config"
      }

      config {
        image = "linuxserver/syncthing:1.24.0"
        ports = ["sync", "discovery", "http"]
      }
    }
  }
}