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 08de950 commit 8618cd0Copy full SHA for 8618cd0
.env.example
@@ -1,2 +1,2 @@
1
# rename file to .env
2
-DATABASE_URL=postgres://prisma:prisma@localhost:5432/hackernews-db
+DATABASE_URL=postgres://postgres:postgres@localhost:5432/hackernews-db
docker-compose.yml
@@ -1,14 +1,14 @@
version: '3.8'
services:
3
4
- # Docker connection string for local machine: postgres://prisma:prisma@localhost:5432/
+ # Docker connection string for local machine: postgres://postgres:postgres@localhost:5432/
5
6
postgres:
7
image: postgres:13.5
8
restart: always
9
environment:
10
- - POSTGRES_USER=prisma
11
- - POSTGRES_PASSWORD=prisma
+ - POSTGRES_USER=postgres
+ - POSTGRES_PASSWORD=postgres
12
volumes:
13
- postgres:/var/lib/postgresql/data
14
ports:
0 commit comments