2021-03-04 07:45:46 -08:00

34 lines
669 B
HCL

job "privileged" {
datacenters = ["dc1"]
group "privileged-group" {
task "privileged-task" {
driver = "containerd-driver"
config {
image = "ubuntu:16.04"
command = "sleep"
args = ["600s"]
privileged = true
devices = [
"/dev/loop0",
"/dev/loop1"
]
mounts = [
{
type = "bind"
target = "/tmp/t1"
source = "/tmp/s1"
options = ["rbind", "ro"]
}
]
}
resources {
cpu = 500
memory = 256
}
}
}
}