Add PUID and PGID to containers

This commit is contained in:
2026-01-20 14:42:55 +00:00
parent aa7f69c89d
commit 0b350f6486
2 changed files with 4 additions and 2 deletions
@@ -55,6 +55,8 @@ locals {
# Disable emails and enable OIDC since this is a private instanced managed with Authentik
penpot_frontend_env_vars = {
PENPOT_FLAGS = "disable-registration disable-email-verification disable-smtp enable-prepl-server enable-login-with-oidc"
PUID=var.user_id
PGID=var.group_id
}
penpot_backend_env_vars = {
@@ -30,13 +30,13 @@ variable "networks" {
variable "user_id" {
description = "User ID for container permissions"
type = string
default = "1000"
default = "1001"
}
variable "group_id" {
description = "Group ID for container permissions"
type = string
default = "1000"
default = "1001"
}
variable "timezone" {