Merge pull request #1 from schtobia/main

Update environment variable names in docker-compose
This commit is contained in:
Tim Zöller 2026-04-10 12:32:52 +02:00 committed by GitHub
commit 6afd7a5dad
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,5 +1,3 @@
version: '3.8'
services:
postgres:
image: postgis/postgis:16-3.4
@ -52,11 +50,11 @@ services:
SPRING_FLYWAY_VALIDATE_ON_MIGRATE: true
# Server Configuration
SERVER_PORT: ${APP_PORT:-8080}
APP_PORT: ${APP_PORT:-8080}
# Application Configuration
FITPUB_DOMAIN: ${APP_DOMAIN}
FITPUB_BASE_URL: ${APP_BASE_URL}
FITPUB_DOMAIN: ${FITPUB_DOMAIN}
FITPUB_BASE_URL: ${FITPUB_BASE_URL}
# Security Configuration
JWT_SECRET: ${JWT_SECRET}
@ -65,6 +63,8 @@ services:
# ActivityPub Configuration
ACTIVITYPUB_ENABLED: ${ACTIVITYPUB_ENABLED:-true}
REGISTRATION_PASSWORD: ${REGISTRATION_PASSWORD}
# File Storage
FILE_UPLOAD_MAX_SIZE: ${FILE_UPLOAD_MAX_SIZE:-50MB}
FILE_UPLOAD_DIR: ${FILE_UPLOAD_DIR:-/app/uploads}