Skip to content

Commit 33a40dc

Browse files
authored
Merge pull request #114 from DefangLabs/eric-add-postgres-upgrade-info
add information about upgrading RDS postgres engine
2 parents 5550cc1 + 0106c4b commit 33a40dc

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

docs/concepts/managed-storage/managed-postgres.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,3 +68,21 @@ You can connect to the managed Postgres instance using the name of your service
6868
// highlight-end
6969

7070
```
71+
72+
### Major Version Updating of Engine
73+
74+
To update the database engine you can simply update the image to a later version in your compose file and apply it via ```defang compose up --provider=aws```. In the example below, we change from Postgres 15 to 16.
75+
76+
Please note the upgrading will occur immediately and may result in the database being unavailable for some time.
77+
78+
```
79+
database:
80+
image: postgres:15
81+
```
82+
83+
to
84+
85+
```
86+
database:
87+
image: postgres:16
88+
```

0 commit comments

Comments
 (0)