You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/docs/content/docs/2.0.0-beta/installation.mdx
+7-7Lines changed: 7 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,8 +39,8 @@ services:
39
39
condition: "service_healthy"
40
40
environment:
41
41
- PORT=${API_INTERNAL_PORT:-3333} # Port for the backend service
42
-
- DATABASE_URL=postgresql://postgres:${POSTGRES_PASSWORD:-postgresRootPassword}@postgres:5432/palmr_db?schema=public # Database URL with configurable password through POSTGRES_PASSWORD env var
43
-
- MINIO_ENDPOINT=minio # This can change if your MinIO is at a different address
42
+
- DATABASE_URL=postgresql://postgres:${POSTGRESQL_PASSWORD:-postgresRootPassword}@postgres:5432/palmr_db?schema=public # Database URL with configurable password through POSTGRESQL_PASSWORD env var
43
+
- MINIO_ENDPOINT=${MINIO_ENDPOINT:-minio}# This can change if your MinIO is at a different address
44
44
- MINIO_PORT=${MINIO_INTERNAL_API_PORT:-6421} # Default MinIO port (Change if yours is not the default)
45
45
- MINIO_USE_SSL=false # MinIO uses SSL by default, but you can change it to true if needed
46
46
- MINIO_ROOT_USER=${MINIO_ROOT_USER:-minio_root_user} # MinIO credentials can be configured through MINIO_ROOT_USER env vars
@@ -54,7 +54,7 @@ services:
54
54
- "${API_EXTERNAL_PORT:-3333}:${API_INTERNAL_PORT:-3333}"# Backend port mapping
0 commit comments