Shishir f3c452534d
Fix issue #116 - allow relative paths in mounts. (#123)
* Fix issue #116 - allow relative paths in mounts.
* Add test.

Signed-off-by: Shishir Mahajan <smahajan@roblox.com>
2022-01-18 16:25:14 -08:00

40 lines
786 B
HCL

job "mosquitto" {
datacenters = ["dc1"]
group "msq-group" {
task "msq-task" {
driver = "containerd-driver"
config {
image = "ubuntu:16.04"
command = "sleep"
args = ["600s"]
mounts = [
{
type = "bind"
target = "/mosquitto/config/mosquitto.conf"
source = "local/mosquitto.conf"
options = ["rbind", "rw"]
}
]
}
template {
destination = "local/mosquitto.conf"
data = <<EOF
bind_address 0.0.0.0
allow_anonymous true
persistence true
persistence_location /mosquitto/data/
log_dest stdout
EOF
}
resources {
cpu = 500
memory = 256
}
}
}
}