Add webgroup/blockbot job

This commit is contained in:
Jed Hazaymeh 2023-11-12 20:56:44 +00:00 committed by GitHub
parent 496ba56469
commit 1c99aa36f6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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