fix typo
This commit is contained in:
parent
cc23af5889
commit
244f6bc354
1 changed files with 11 additions and 2 deletions
|
@ -38,10 +38,19 @@ job "dcusr" {
|
|||
image = "ghcr.io/dcu-solar-racing/nextjs-website:main"
|
||||
ports = ["http"]
|
||||
auth {
|
||||
username = {{ key "dcusr/ghcr/username" }}
|
||||
password = {{ key "dcusr/ghcr/password" }}
|
||||
username = "${DOCKER_USER}"
|
||||
password = "${DOCKER_PASS}"
|
||||
}
|
||||
}
|
||||
template {
|
||||
destination = "secrets/secret.env"
|
||||
env = true
|
||||
change_mode = "restart"
|
||||
data = <<EOH
|
||||
DOCKER_USER={{ key "dcusr/ghcr/username" }}
|
||||
DOCKER_PASS={{ key "dcusr/ghcr/password" }}
|
||||
EOH
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue