Skip to content

Commit

Permalink
Merge pull request #11 from OSGP/feature/FDP-1880
Browse files Browse the repository at this point in the history
FDP-1880: Correct local postgres port
  • Loading branch information
jasperkamerling authored Jan 17, 2024
2 parents 69e61ff + 3c55a5c commit fd7b498
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion application/src/main/resources/application-dev.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
spring:
datasource:
url: "jdbc:postgresql://localhost:5434/crest_device_simulator"
url: "jdbc:postgresql://localhost:5432/crest_device_simulator"
username: "postgres"
password: "1234"
jpa:
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
postgres:
image: postgres:16-alpine
ports:
- "5434:5434"
- "5432:5432"
volumes:
- ./docker/postgres/:/docker-entrypoint-initdb.d/
environment:
Expand Down

0 comments on commit fd7b498

Please sign in to comment.