fix+upgrade miniflux resource limits

This commit is contained in:
Nemo 2023-06-01 13:59:55 +05:30
parent 938ed017c9
commit 406f4557fe
1 changed files with 6 additions and 1 deletions

View File

@ -1,7 +1,7 @@
module "miniflux-container" {
name = "miniflux"
source = "./modules/container"
image = "miniflux/miniflux:2.0.39"
image = "miniflux/miniflux:2.0.43"
web = {
expose = true
@ -15,6 +15,11 @@ module "miniflux-container" {
"DATABASE_URL=postgres://miniflux:${data.pass_password.miniflux-db-password.password}@postgres/miniflux?sslmode=disable",
"RUN_MIGRATIONS=1",
]
resource = {
memory = 512
memory_swap = 1024
}
}
module "miniflux-db" {