aboutsummaryrefslogtreecommitdiff
path: root/app/deployment/nextcloud.hcl
diff options
context:
space:
mode:
authorQuentin <quentin@deuxfleurs.fr>2020-12-22 10:46:26 +0100
committerQuentin <quentin@deuxfleurs.fr>2020-12-22 10:46:26 +0100
commit846449b2383d8ff3041be2d035017047090dcaef (patch)
tree74b742e94dce118c23d4d095a826e426ff8b48db /app/deployment/nextcloud.hcl
parentb6ccf06d8ab9f257725e9a5596f99425c1b48ee5 (diff)
downloadinfrastructure-846449b2383d8ff3041be2d035017047090dcaef.tar.gz
infrastructure-846449b2383d8ff3041be2d035017047090dcaef.zip
Migrate Nextcloud to Nomad 1.0.1
Diffstat (limited to 'app/deployment/nextcloud.hcl')
-rw-r--r--app/deployment/nextcloud.hcl21
1 files changed, 9 insertions, 12 deletions
diff --git a/app/deployment/nextcloud.hcl b/app/deployment/nextcloud.hcl
index b2e11bf..8eed7d9 100644
--- a/app/deployment/nextcloud.hcl
+++ b/app/deployment/nextcloud.hcl
@@ -10,34 +10,31 @@ job "nextcloud" {
group "nextcloud" {
count = 1
+
+ network {
+ port "web_port" {
+ to = 80
+ }
+ }
+
task "nextcloud" {
driver = "docker"
config {
image = "lxpz/deuxfleurs_nextcloud_amd64:8"
- port_map {
- web_port = 80
- }
+ ports = [ "web_port" ]
volumes = [
"secrets/config.php:/var/www/html/config/config.php"
]
}
- artifact {
- source = "http://127.0.0.1:8500/v1/kv/configuration/nextcloud/config.php.tpl?raw"
- destination = "secrets/config.php.tpl"
- mode = "file"
- }
template {
- source = "secrets/config.php.tpl"
+ data = file("../config/configuration/nextcloud/config.php.tpl")
destination = "secrets/config.php"
}
resources {
memory = 1000
cpu = 2000
- network {
- port "web_port" {}
- }
}
service {