mastodon image conflict fixes

This commit is contained in:
Nemo 2023-06-01 14:00:08 +05:30
parent 406f4557fe
commit 5bd44d411f
1 changed files with 3 additions and 0 deletions

View File

@ -2,6 +2,7 @@ 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 @@ module "mastodon-streaming" {
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 @@ module "mastodon-sidekiq" {
name = "mastodon-sidekiq"
source = "../modules/container"
image = "tootsuite/mastodon:v${local.version}"
keep_image = true
env = concat(local.env,[
"DB_POOL=50"
])