Skip to content

Commit 0db512d

Browse files
committed
chore(): Update to use postgres:11
1 parent f4d7a7b commit 0db512d

File tree

7 files changed

+9
-30
lines changed

7 files changed

+9
-30
lines changed

examples/federation/docker-compose.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3"
22

33
services:
44
db1:
5-
image: "postgres:11.7"
5+
image: "postgres:11"
66
environment:
77
- "POSTGRES_USER=graphqlfederation_db1"
88
- "POSTGRES_DB=graphql_federation_db1"
@@ -12,7 +12,7 @@ services:
1212
ports:
1313
- "5437:5432"
1414
db2:
15-
image: "postgres:11.7"
15+
image: "postgres:11"
1616
environment:
1717
- "POSTGRES_USER=graphqlfederation_db2"
1818
- "POSTGRES_DB=graphql_federation_db2"
@@ -22,7 +22,7 @@ services:
2222
ports:
2323
- "5438:5432"
2424
db3:
25-
image: "postgres:11.7"
25+
image: "postgres:11"
2626
environment:
2727
- "POSTGRES_USER=graphqlfederation_db3"
2828
- "POSTGRES_DB=graphql_federation_db3"

examples/federation/graphql-gateway/docker-compose.yml

Lines changed: 0 additions & 21 deletions
This file was deleted.

examples/nest-graphql-basic/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3"
22

33
services:
44
postgres:
5-
image: "postgres:11.7"
5+
image: "postgres:11"
66
environment:
77
- "POSTGRES_USER=graphqltypeorm"
88
- "POSTGRES_DB=graphql_typeorm"

examples/nest-graphql-sequelize/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3"
22

33
services:
44
postgres:
5-
image: "postgres:11.7"
5+
image: "postgres:11"
66
environment:
77
- "POSTGRES_USER=graphqlsequelize"
88
- "POSTGRES_DB=graphql_sequelize"

examples/nest-graphql-typeorm-multidb/docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3"
22

33
services:
44
db1:
5-
image: "postgres:11.7"
5+
image: "postgres:11"
66
environment:
77
- "POSTGRES_USER=graphqltypeorm_mdb1"
88
- "POSTGRES_DB=graphql_typeorm_mdb1"
@@ -12,7 +12,7 @@ services:
1212
ports:
1313
- "5437:5432"
1414
db2:
15-
image: "postgres:11.7"
15+
image: "postgres:11"
1616
environment:
1717
- "POSTGRES_USER=graphqltypeorm_mdb2"
1818
- "POSTGRES_DB=graphql_typeorm_mdb2"

examples/nest-graphql-typeorm-soft-delete/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3"
22

33
services:
44
postgres:
5-
image: "postgres:11.7"
5+
image: "postgres:11"
66
environment:
77
- "POSTGRES_USER=graphqltypeorm"
88
- "POSTGRES_DB=graphql_typeorm_soft_delete"

examples/nest-graphql-typeorm/docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ version: "3"
22

33
services:
44
postgres:
5-
image: "postgres:11.7"
5+
image: "postgres:11"
66
environment:
77
- "POSTGRES_USER=graphqltypeorm"
88
- "POSTGRES_DB=graphql_typeorm"

0 commit comments

Comments
 (0)