Merge pull request #1 from schtobia/main
Update environment variable names in docker-compose
This commit is contained in:
commit
6afd7a5dad
1 changed files with 5 additions and 5 deletions
|
|
@ -1,5 +1,3 @@
|
||||||
version: '3.8'
|
|
||||||
|
|
||||||
services:
|
services:
|
||||||
postgres:
|
postgres:
|
||||||
image: postgis/postgis:16-3.4
|
image: postgis/postgis:16-3.4
|
||||||
|
|
@ -52,11 +50,11 @@ services:
|
||||||
SPRING_FLYWAY_VALIDATE_ON_MIGRATE: true
|
SPRING_FLYWAY_VALIDATE_ON_MIGRATE: true
|
||||||
|
|
||||||
# Server Configuration
|
# Server Configuration
|
||||||
SERVER_PORT: ${APP_PORT:-8080}
|
APP_PORT: ${APP_PORT:-8080}
|
||||||
|
|
||||||
# Application Configuration
|
# Application Configuration
|
||||||
FITPUB_DOMAIN: ${APP_DOMAIN}
|
FITPUB_DOMAIN: ${FITPUB_DOMAIN}
|
||||||
FITPUB_BASE_URL: ${APP_BASE_URL}
|
FITPUB_BASE_URL: ${FITPUB_BASE_URL}
|
||||||
|
|
||||||
# Security Configuration
|
# Security Configuration
|
||||||
JWT_SECRET: ${JWT_SECRET}
|
JWT_SECRET: ${JWT_SECRET}
|
||||||
|
|
@ -65,6 +63,8 @@ services:
|
||||||
# ActivityPub Configuration
|
# ActivityPub Configuration
|
||||||
ACTIVITYPUB_ENABLED: ${ACTIVITYPUB_ENABLED:-true}
|
ACTIVITYPUB_ENABLED: ${ACTIVITYPUB_ENABLED:-true}
|
||||||
|
|
||||||
|
REGISTRATION_PASSWORD: ${REGISTRATION_PASSWORD}
|
||||||
|
|
||||||
# File Storage
|
# File Storage
|
||||||
FILE_UPLOAD_MAX_SIZE: ${FILE_UPLOAD_MAX_SIZE:-50MB}
|
FILE_UPLOAD_MAX_SIZE: ${FILE_UPLOAD_MAX_SIZE:-50MB}
|
||||||
FILE_UPLOAD_DIR: ${FILE_UPLOAD_DIR:-/app/uploads}
|
FILE_UPLOAD_DIR: ${FILE_UPLOAD_DIR:-/app/uploads}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue