Make postgres port the default
Test / test (push) Failing after 49s Details

This commit is contained in:
Jeff 2024-10-02 01:37:48 -04:00
parent 8a3be36048
commit dfea928ad2
2 changed files with 3 additions and 3 deletions

View File

@ -3,5 +3,5 @@ export default {
host: "database",
user: "postgres",
password: process.env.POSTGRES_PASSWORD,
port: 5433,
port: 5432,
}

View File

@ -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