Add tls for ionos

Add ipv6 connectivity
Enable meshmesh.nl
This commit is contained in:
Rescla
2026-06-13 21:48:46 +02:00
parent 2a34970297
commit 05778f34f2
7 changed files with 153 additions and 3 deletions
+7 -1
View File
@@ -9,11 +9,17 @@ terraform {
provider "docker" {
host = "tcp://127.0.0.1:2376"
#cert_path = pathexpand(".docker")
cert_path = pathexpand(".docker")
registry_auth {
address = "gitea.rescla.me"
username = "rescla"
password = "9c84612c4b053e2ec663cde03da730b6a01304e8"
}
}
resource "docker_network" "bridge-v6" {
name = "bridge-v6"
ipv6 = true
driver = "bridge"
}