🏡 index : github.com/captn3m0/nebula.git

author Nemo <commits@captnemo.in> 2023-06-01 14:00:08.0 +05:30:00
committer Nemo <commits@captnemo.in> 2023-06-01 14:00:08.0 +05:30:00
commit
5bd44d411f8b51116aec2b553f84bf9a29bb5fe0 [patch]
tree
314ecc3c192a61d9a6be7ead5ed6de032dbf0572
parent
406f4557fe69f2313733fdbc424dbd879df9b60b
download
5bd44d411f8b51116aec2b553f84bf9a29bb5fe0.tar.gz

mastodon image conflict fixes



Diff

 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"
  ])