29 lines
880 B
YAML
29 lines
880 B
YAML
# Palmr File Transfer Service Configuration
|
|
services:
|
|
palmr:
|
|
# Basic container configuration
|
|
container_name: palmr
|
|
image: docker.io/kyantech/palmr:v3.1.1-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
|
|
volumes:
|
|
- ${APPDATA_PATH}/palmr/server:/app/server # Database and File storage directory
|
|
|
|
# Network configuration
|
|
ports:
|
|
- ${PORT}:5487 # Web interface port
|