implemented rootless image and running

This commit is contained in:
fuomag9
2025-12-28 20:19:46 +01:00
parent f9a3719b6b
commit a2512ffb8c
5 changed files with 70 additions and 24 deletions

View File

@@ -28,6 +28,22 @@ ADMIN_PASSWORD=Your-Secure-P@ssw0rd-Here!
# Public base URL for the application
BASE_URL=http://localhost:3000
# =============================================================================
# ROOTLESS OPERATION (OPTIONAL)
# =============================================================================
# User and Group IDs for running containers as non-root
# Set these to match your host user to avoid permission issues with volumes
# Find your UID/GID with: id -u / id -g
#
# Defaults:
# - Web service: PUID=10001, PGID=10001
# - Caddy service: PUID=10000, PGID=10000
#
# For matching your host user (recommended for development):
# PUID=1000
# PGID=1000
# =============================================================================
# OAUTH2/OIDC AUTHENTICATION (OPTIONAL)
# =============================================================================