Add redis task

This commit is contained in:
Nova 2023-10-22 16:44:46 +01:00
parent 4108c27db1
commit 511c393578

View file

@ -10,11 +10,16 @@ job "nova-timetable" {
port "http" { port "http" {
to = 80 to = 80
} }
port "db" {
to = 6379
}
} }
service { service {
port = "http"
name = "nova-timetable" name = "nova-timetable"
port = "http"
check { check {
type = "http" type = "http"
path = "/healthcheck" path = "/healthcheck"
@ -32,10 +37,24 @@ job "nova-timetable" {
task "python-application" { task "python-application" {
driver = "docker" driver = "docker"
env {
REDIS_ADDRESS = "${NOMAD_ADDR_db}"
}
config { config {
image = "novanai/timetable-sync" image = "novanai/timetable-sync"
ports = ["http"] ports = ["http"]
} }
} }
task "redis-db" {
driver = "docker"
config {
image = "redis:latest"
ports = ["db"]
}
}
} }
} }