[kaarana] Unused, but upgraded

This commit is contained in:
Nemo 2022-12-26 12:50:43 +05:30
parent 4b6b07c09a
commit eb1c40df6e
3 changed files with 3 additions and 3 deletions

View File

@ -18,7 +18,7 @@ resource "docker_network" "kaarana-db" {
// Run a small mySQL container in this subnet
resource "docker_container" "mysql" {
image = docker_image.db.latest
image = docker_image.db.image_id
name = "kaarana-mariadb"
restart = "always"
must_run = true

View File

@ -12,7 +12,7 @@ resource "docker_network" "traefik" {
resource "docker_container" "traefik" {
name = "traefik"
image = docker_image.traefik.latest
image = docker_image.traefik.image_id
# Do not offer HTTP2
# https://community.containo.us/t/traefikv2-http-2-0/1199

View File

@ -1,5 +1,5 @@
resource "docker_container" "wp" {
image = docker_image.wp.latest
image = docker_image.wp.image_id
name = "kaarana-wordpress"
restart = "always"