Manually declare PGID and PUID
This commit is contained in:
@@ -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" {
|
||||
|
||||
Reference in New Issue
Block a user