staging: tricot compilé avec musl, dans une image docker

Correspond à: Deuxfleurs/tricot#15
This commit is contained in:
Armaël Guéneau 2024-11-08 22:31:09 +01:00
parent d0341caf77
commit b279f1e0db

View file

@ -21,20 +21,25 @@ job "core-tricot" {
}
task "server" {
driver = "nix2"
driver = "docker"
config {
packages = [
"git+https://git.deuxfleurs.fr/Deuxfleurs/tricot.git?ref=main&rev=9bb505d977cb8bafd8039159241788ff25510d69"
image = "armael/tricot:n6dk1b5xrdww12zf12jbcmihqs6g1brz"
network_mode = "host"
readonly_rootfs = true
ports = [ "http_port", "https_port" ]
volumes = [
"secrets:/etc/tricot",
]
command = "tricot"
# cap_add = [ "net_bind_service" ] # this doesn't work for whatever reason, so we need to put user = "root" instead
ulimit {
nofile = "65535:65535"
}
}
user = "root"
resources {
cpu = 500
memory = 200
memory_max = 500
}
restart {
@ -46,17 +51,17 @@ job "core-tricot" {
template {
data = "{{ key \"secrets/consul/consul-ca.crt\" }}"
destination = "etc/tricot/consul-ca.crt"
destination = "secrets/consul-ca.crt"
}
template {
data = "{{ key \"secrets/consul/consul-client.crt\" }}"
destination = "etc/tricot/consul-client.crt"
destination = "secrets/consul-client.crt"
}
template {
data = "{{ key \"secrets/consul/consul-client.key\" }}"
destination = "etc/tricot/consul-client.key"
destination = "secrets/consul-client.key"
}
template {