Add duplicate of unifi system for restoring a backup
Some checks failed
Trunk Check / Trunk Check Runner (push) Failing after 2s
Some checks failed
Trunk Check / Trunk Check Runner (push) Failing after 2s
This commit is contained in:
parent
3ce144ce24
commit
5f01e175a8
1 changed files with 30 additions and 0 deletions
30
ubiquity.tf
30
ubiquity.tf
|
@ -53,6 +53,36 @@ resource "docker_service" "unifi_controller" {
|
|||
}
|
||||
}
|
||||
|
||||
resource "docker_service" "unifi_controller_restored_from_backup" {
|
||||
name = "unifi_controller_restored_from_backup"
|
||||
provider = docker.unifi
|
||||
task_spec {
|
||||
container_spec {
|
||||
image = "${data.docker_registry_image.unifi_controller.name}@${data.docker_registry_image.unifi_controller.sha256_digest}"
|
||||
env = {
|
||||
TZ = "Europe/Amsterdam"
|
||||
}
|
||||
mounts {
|
||||
target = "/unifi"
|
||||
source = "/home/techinc/unifi_restored_from_backup"
|
||||
type = "bind"
|
||||
}
|
||||
}
|
||||
restart_policy {
|
||||
condition = "any"
|
||||
delay = "0s"
|
||||
window = "0s"
|
||||
}
|
||||
}
|
||||
endpoint_spec {
|
||||
ports {
|
||||
target_port = 443
|
||||
published_port = 444
|
||||
publish_mode = "ingress"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
data "docker_registry_image" "http2https" {
|
||||
name = "articulate/http-to-https"
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue