Skip to content

Commit 9cc8ee8

Browse files
author
Lasim
committed
docs: Update PostgreSQL image version to 18-alpine and add default database password information for Docker Compose setup
1 parent 3efc0c4 commit 9cc8ee8

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

development/backend/database/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -397,7 +397,7 @@ POSTGRES_SSL=true
397397
```yaml
398398
services:
399399
postgres:
400-
image: postgres:16-alpine
400+
image: postgres:18-alpine
401401
environment:
402402
POSTGRES_DB: deploystack
403403
POSTGRES_USER: deploystack

development/backend/database/postgresql.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ This enables SSL with `rejectUnauthorized: false` for self-signed certificates.
265265
```yaml
266266
services:
267267
postgres:
268-
image: postgres:16-alpine
268+
image: postgres:18-alpine
269269
environment:
270270
POSTGRES_DB: deploystack
271271
POSTGRES_USER: deploystack

self-hosted/docker-compose.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,10 @@ Download the `docker-compose.yml` file to your working directory:
4444
curl -o docker-compose.yml https://raw.githubusercontent.com/deploystackio/deploystack/main/docker-compose.yml
4545
```
4646

47+
<Info>
48+
**Default Database Password**: The Docker Compose file uses a default PostgreSQL password (`deploystack`) for quick demos and local testing. For production or internet-exposed deployments, set a strong password via the `POSTGRES_PASSWORD` environment variable in your `.env` file.
49+
</Info>
50+
4751
### Step 2: Generate Encryption Secret
4852

4953
DeployStack requires a secure encryption secret for protecting sensitive data like API keys and credentials.

self-hosted/quick-start.mdx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,10 @@ The fastest way to get DeployStack backend and frontend running with proper netw
3838
<Info>
3939
**Note**: This deploys the backend and frontend only. The satellite service must be deployed separately after completing the setup wizard (see [Satellite Service](#satellite-service) section below).
4040
</Info>
41+
42+
<Info>
43+
**Default Database Password**: The Docker Compose file uses a default PostgreSQL password (`deploystack`) for quick demos and local testing. For production or internet-exposed deployments, add `POSTGRES_PASSWORD=your_secure_password` before the command.
44+
</Info>
4145
</Step>
4246

4347
<Step title="Access DeployStack">

0 commit comments

Comments
 (0)