This commit is contained in:
Marc Fokkert
2025-09-11 08:26:07 +02:00
parent 995332e672
commit 8d2a5c5494
6 changed files with 12 additions and 2 deletions

View File

@@ -13,6 +13,7 @@ resource "docker_container" "deluge" {
restart = "always"
memory = 1000
memory_swap = 1000
log_driver = "local"

View File

@@ -11,6 +11,9 @@ resource "docker_container" "mariadb" {
image = docker_image.mariadb.image_id
name = "mariadb"
memory = 5000
memory_swap = 5000
mounts {
target = "/var/lib/mysql"
source = "/var/lib/containers/mariadb"

View File

@@ -4,6 +4,9 @@ resource "docker_container" "photoprism-tineke" {
restart = "always"
memory = 5000
memory_swap = 5000
env = [
"PHOTOPRISM_UPLOAD_NSFW=true",
"PHOTOPRISM_ADMIN_PASSWORD=pyjm73tM%UPa8B5t5zhWX*F",

View File

@@ -13,6 +13,9 @@ resource "docker_container" "photoprism" {
restart = "always"
memory = 5000
memory_swap = 5000
env = [
"PHOTOPRISM_UPLOAD_NSFW=true",
"PHOTOPRISM_ADMIN_PASSWORD=UAmpojHADcS5aB",

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long