Add docker_registry_image entries for tf files that did not have it

Move some images to disabled
This commit is contained in:
Marc Fokkert
2023-08-01 14:12:05 +02:00
parent adbbb205e1
commit cfe595cf66
12 changed files with 3907 additions and 887 deletions

32
_disabled/kodi.tf Normal file
View File

@@ -0,0 +1,32 @@
resource "docker_image" "kodi" {
name = "linuxserver/kodi-headless:latest"
}
resource "docker_container" "kodi" {
image = docker_image.kodi.image_id
name = "kodi"
restart = "always"
env = [
"TZ=europe/amsterdam",
]
mounts {
target = "/config/.kodi"
source = "/share/appdata/kodi"
type = "bind"
}
lifecycle {
ignore_changes = [
ulimit,
log_opts
]
}
networks_advanced {
name = docker_network.bridge.name
ipv4_address = "192.168.2.128"
}
}