mirror of
https://github.com/kyantech/Palmr.git
synced 2025-10-23 06:11:58 +00:00
- Introduced SECURE_SITE variable in all Docker Compose files to allow configuration for reverse proxy usage. - This addition enhances flexibility for deployment scenarios where a reverse proxy is utilized, improving security configurations.
27 lines
1.5 KiB
YAML
27 lines
1.5 KiB
YAML
services:
|
|
palmr:
|
|
image: kyantech/palmr:latest
|
|
container_name: palmr
|
|
environment:
|
|
# S3 Configuration (only used when ENABLE_S3=true)
|
|
- ENABLE_S3=true # Set to true to use S3 storage
|
|
- S3_ENDPOINT=${S3_ENDPOINT} # S3 endpoint (you have to set this to the s3 endpoint of the s3 server) CHANGE THIS TO YOUR S3 ENDPOINT
|
|
- S3_USE_SSL=${S3_USE_SSL:-true} # Use ssl for the s3 server always true for s3
|
|
- S3_ACCESS_KEY=${S3_ACCESS_KEY} # S3 access key (you have to generate this key in s3 server)
|
|
- S3_SECRET_KEY=${S3_SECRET_KEY} # S3 secret key (you have to generate this key in s3 server)
|
|
- S3_REGION=${S3_REGION:-us-east-1} # S3 region (us-east-1 is the default region) but it depends on your s3 server region
|
|
- S3_BUCKET_NAME=${S3_BUCKET_NAME:-palmr-files} # Bucket name for the S3 storage (here we are using palmr-files as the bucket name to understand that this is the bucket for palmr)
|
|
- S3_FORCE_PATH_STYLE=false # For S3 compatibility we have to set this to false
|
|
- PALMR_UID=1000 # UID for the container processes (default is 1001)
|
|
- PALMR_GID=1000 # GID for the container processes (default is 1001)
|
|
- SECURE_SITE=false # Set to true if you are using a reverse proxy
|
|
ports:
|
|
- "5487:5487" # Web port
|
|
- "3333:3333" # API port (OPTIONAL EXPOSED - ONLY IF YOU WANT TO ACCESS THE API DIRECTLY)
|
|
volumes:
|
|
- palmr_data:/app/server # Volume for the application data
|
|
restart: unless-stopped # Restart the container unless it is stopped
|
|
|
|
volumes:
|
|
palmr_data:
|