Skip to content

Commit

Permalink
fix: SB-724 Revert Postgres to 13.7
Browse files Browse the repository at this point in the history
  • Loading branch information
mkleszcz committed Nov 14, 2022
1 parent a646e3f commit 9015e08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: "3.4"

services:
db:
image: postgres:14.4
image: postgres:13.7
ports:
- "5432:5432"
restart: unless-stopped
Expand Down
2 changes: 1 addition & 1 deletion infra/cdk/lib/stacks/env/db/mainDatabase.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export class MainDatabase extends Construct {
vpc: props.vpc,
vpcSubnets: { subnetType: SubnetType.PUBLIC },
engine: DatabaseInstanceEngine.postgres({
version: PostgresEngineVersion.of("14.4", "14", {
version: PostgresEngineVersion.of("13.7", "13", {
s3Import: true,
s3Export: true,
}),
Expand Down

0 comments on commit 9015e08

Please sign in to comment.