File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -17,10 +17,10 @@ quarkus.http.auth.permission.develop-quarkus-services.policy = permit
17
17
# Datasource configuration for PostgreSQL
18
18
quarkus.datasource.devservices.enabled = false
19
19
quarkus.datasource.db-kind = postgresql
20
- quarkus.datasource.jdbc.url = jdbc:postgresql://localhost: 5432/ compas
20
+ quarkus.datasource.jdbc.url = jdbc:postgresql://${POSTGRESQL_HOST: localhost}:${POSTGRESQL_PORT: 5432}/${POSTGRESQL_DB: compas}
21
21
quarkus.datasource.jdbc.max-size = 16
22
- quarkus.datasource.username = postgres
23
- quarkus.datasource.password = postgres
22
+ quarkus.datasource.username = ${POSTGRESQL_USERNAME: postgres}
23
+ quarkus.datasource.password = ${POSTGRESQL_PASSWORD: postgres}
24
24
25
25
# Flyway configuration for PostgreSQL
26
26
quarkus.flyway.migrate-at-start = true
Original file line number Diff line number Diff line change @@ -10,10 +10,10 @@ quarkus.index-dependency.scl-data-repository.artifact-id = repository-postgresql
10
10
11
11
# Datasource configuration for PostgreSQL
12
12
quarkus.datasource.db-kind = postgresql
13
- quarkus.datasource.jdbc.url = jdbc:postgresql://localhost: 5432/ compas
13
+ quarkus.datasource.jdbc.url = jdbc:postgresql://${POSTGRESQL_HOST: localhost}:${POSTGRESQL_PORT: 5432}/${POSTGRESQL_DB: compas}
14
14
quarkus.datasource.jdbc.max-size = 16
15
- quarkus.datasource.username = postgres
16
- quarkus.datasource.password = postgres
15
+ quarkus.datasource.username = ${POSTGRESQL_USERNAME: postgres}
16
+ quarkus.datasource.password = ${POSTGRESQL_PASSWORD: postgres}
17
17
18
18
# Flyway configuration for PostgreSQL
19
19
quarkus.flyway.migrate-at-start = true
You can’t perform that action at this time.
0 commit comments