Skip to content

Commit c05dc3f

Browse files
committed
Change default postgres password, as default postgres image doesn't allow it
1 parent 806371c commit c05dc3f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

app/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ jooq {
7979
driver = 'org.postgresql.Driver'
8080
url = 'jdbc:postgresql://localhost:5432/postgres'
8181
user = 'postgres'
82-
password = ''
82+
password = 'YOU_MUST_CHANGE_THIS_PASSWORD'
8383
properties {
8484
property {
8585
key = 'ssl'

app/src/main/resources/hikariJdbc.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
jdbc.url=jdbc:postgresql://localhost:5432/postgres
44
jdbc.username=postgres
5-
jdbc.password=
5+
jdbc.password=YOU_MUST_CHANGE_THIS_PASSWORD
66

77
# Idle Timeout
88
hikaricp.minimumIdle=10

0 commit comments

Comments
 (0)