From 5bd44d411f8b51116aec2b553f84bf9a29bb5fe0 Mon Sep 17 00:00:00 2001
From: Nemo <commits@captnemo.in>
Date: Thu, 01 Jun 2023 14:00:08 +0530
Subject: [PATCH] mastodon image conflict fixes

---
 mastodon/main.tf | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/mastodon/main.tf b/mastodon/main.tf
index 60a8960..0c54e60 100644
--- a/mastodon/main.tf
+++ a/mastodon/main.tf
@@ -1,7 +1,8 @@
 module "mastodon-web" {
   name   = "mastodon-web"
   source = "../modules/container"
   image  = "tootsuite/mastodon:v${local.version}"
+  keep_image = true
 
   networks = ["mastodon", "traefik", "external", "postgres"]
 
@@ -38,6 +39,7 @@
   name   = "mastodon-streaming"
   source = "../modules/container"
   image  = "tootsuite/mastodon:v${local.version}"
+  keep_image = true
   # 24 threads for Streaming
   env = concat(local.env,[
     "DB_POOL=8",
@@ -66,6 +68,7 @@
   name   = "mastodon-sidekiq"
   source = "../modules/container"
   image  = "tootsuite/mastodon:v${local.version}"
+  keep_image = true
   env = concat(local.env,[
     "DB_POOL=50"
   ])
--
rgit 0.1.5