Merge pull request #10 from JedHazaymeh/patch-1

Add webgroup/blockbot job
This commit is contained in:
wizzdom 2023-12-05 23:10:10 +00:00 committed by GitHub
commit 6ee5c15f57
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,31 @@
job "blockbot" {
datacenters = ["aperture"]
type = "service"
group "blockbot" {
count = 1
task "blockbot" {
driver = "docker"
config {
image = "ghcr.io/redbrick/blockbot"
}
resources {
cpu = 500
memory = 256
}
template {
data = <<EOF
TOKEN={{ key "blockbot/discord/token" }}
DEBUG=false
EOF
destination = "local/.env"
env = true
}
}
}
}