Remove comments v3

This commit is contained in:
2025-07-19 20:34:39 +05:30
parent 948b0575b9
commit 422a0f6211
9 changed files with 96 additions and 212 deletions

View File

@@ -1,28 +1,15 @@
# Palmr File Transfer Service Configuration
services:
palmr:
# Basic container configuration
container_name: palmr
image: docker.io/kyantech/palmr:v3.1.3-beta
restart: unless-stopped
# Application settings
environment:
# Storage Configuration
- ENABLE_S3=false
# Security Settings
- ENCRYPTION_KEY=${ENCRYPTION_KEY} # Data encryption key for security
- SECURE_SITE=${SECURE_SITE} # Enable/Disable HTTPS security features
# User/Group Permissions
- PALMR_UID=${PUID} # User ID for proper file permissions
- PALMR_GID=${PGID} # Group ID for proper file permissions
# Persistent storage configuration
- ENCRYPTION_KEY=${ENCRYPTION_KEY}
- SECURE_SITE=${SECURE_SITE}
- PALMR_UID=${PUID}
- PALMR_GID=${PGID}
volumes:
- ${APPDATA_PATH}/palmr/server:/app/server # Database and File storage directory
# Network configuration
- ${APPDATA_PATH}/palmr/server:/app/server
ports:
- ${PORT}:5487 # Web interface port
- ${PORT}:5487