Add redis task
This commit is contained in:
parent
4108c27db1
commit
511c393578
1 changed files with 21 additions and 2 deletions
|
@ -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"]
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
Loading…
Reference in a new issue