forked from Deuxfleurs/nixcfg
Alex Auvolat
385882c74c
- migrate courgette and concombre to M710q machines with SSD+HDD - migrate prod/c* to nixos 22.11
76 lines
1.6 KiB
HCL
76 lines
1.6 KiB
HCL
job "cryptpad" {
|
|
datacenters = ["neptune"]
|
|
type = "service"
|
|
|
|
group "cryptpad" {
|
|
count = 1
|
|
|
|
network {
|
|
port "http" {
|
|
to = 3000
|
|
}
|
|
}
|
|
|
|
restart {
|
|
attempts = 10
|
|
delay = "30s"
|
|
}
|
|
|
|
task "main" {
|
|
driver = "docker"
|
|
|
|
constraint {
|
|
attribute = "${attr.unique.hostname}"
|
|
operator = "="
|
|
value = "concombre"
|
|
}
|
|
|
|
config {
|
|
image = "superboum/cryptpad:0p3s44hjh4s1x55kbwkmywmwmx4wfyb8"
|
|
ports = [ "http" ]
|
|
|
|
volumes = [
|
|
"/mnt/ssd/cryptpad:/mnt",
|
|
"secrets/config.js:/etc/cryptpad/config.js",
|
|
]
|
|
}
|
|
env {
|
|
CRYPTPAD_CONFIG = "/etc/cryptpad/config.js"
|
|
}
|
|
|
|
template {
|
|
data = file("../config/config.js")
|
|
destination = "secrets/config.js"
|
|
}
|
|
|
|
/* Disabled because it requires modifications to the docker image and I do not want to invest the time yet
|
|
template {
|
|
data = file("../config/application_config.js")
|
|
destination = "secrets/config.js"
|
|
}
|
|
*/
|
|
|
|
resources {
|
|
memory = 1000
|
|
cpu = 500
|
|
}
|
|
|
|
service {
|
|
name = "cryptpad"
|
|
port = "http"
|
|
tags = [
|
|
"tricot pad.deuxfleurs.fr",
|
|
"tricot pad-sandbox.deuxfleurs.fr",
|
|
"tricot-add-header Cross-Origin-Resource-Policy cross-origin",
|
|
"tricot-add-header Cross-Origin-Embedder-Policy require-corp",
|
|
]
|
|
check {
|
|
type = "http"
|
|
path = "/"
|
|
interval = "10s"
|
|
timeout = "2s"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|