We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a27686f commit d2ee743Copy full SHA for d2ee743
.github/workflows/ci.yml
@@ -21,7 +21,9 @@ jobs:
21
postgres:
22
image: postgres:latest
23
env:
24
+ POSTGRES_USER: postgres
25
POSTGRES_PASSWORD: postgres
26
+ POSTGRES_DB: postgres
27
ports:
28
- 5432:5432
29
docker-compose.yml
@@ -0,0 +1,11 @@
1
+version: "3.8"
2
+services:
3
+ db:
4
+ image: postgres
5
+ restart: always
6
+ environment:
7
+ - POSTGRES_USER=postgres
8
+ - POSTGRES_PASSWORD=postgres
9
+ - POSTGRES_DB=postgres
10
+ ports:
11
+ - "5432:5432"
0 commit comments