Manually declare PGID and PUID

This commit is contained in:
2026-01-20 14:57:24 +00:00
parent e4442f489a
commit ad97c5ec81
2 changed files with 4 additions and 4 deletions
@@ -58,8 +58,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=local.USER_ID
PGID=local.GROUP_ID
PUID="1001"
PGID="1001"
}
penpot_backend_env_vars = {
@@ -30,13 +30,13 @@ variable "networks" {
variable "user_id" {
description = "User ID for container permissions"
type = string
default = "1001"
default = "1000"
}
variable "group_id" {
description = "Group ID for container permissions"
type = string
default = "1001"
default = "1000"
}
variable "timezone" {