Add webgroup/blockbot job
This commit is contained in:
parent
496ba56469
commit
1c99aa36f6
1 changed files with 32 additions and 0 deletions
32
jobs/webgroup/blockbot.hcl
Normal file
32
jobs/webgroup/blockbot.hcl
Normal 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
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in a new issue