Make postgres port the default
Test / test (push) Failing after 49s
Details
Test / test (push) Failing after 49s
Details
This commit is contained in:
parent
8a3be36048
commit
dfea928ad2
|
|
@ -3,5 +3,5 @@ export default {
|
|||
host: "database",
|
||||
user: "postgres",
|
||||
password: process.env.POSTGRES_PASSWORD,
|
||||
port: 5433,
|
||||
port: 5432,
|
||||
}
|
||||
|
|
|
|||
|
|
@ -6,10 +6,10 @@ services:
|
|||
database:
|
||||
image: postgres
|
||||
ports:
|
||||
- "5433:5432"
|
||||
- "5432:5432"
|
||||
environment:
|
||||
POSTGRES_PASSWORD: $POSTGRES_PASSWORD
|
||||
POSTGRES_USER: postgres
|
||||
POSTGRES_DB: postgres
|
||||
volumes:
|
||||
- ./data:/var/lib/postgresql/data
|
||||
- ./data:/var/lib/postgresql/data
|
||||
|
|
|
|||
Loading…
Reference in New Issue