Fixed postgres user

This commit is contained in:
Patrick Skowronek 2022-05-17 10:57:32 +02:00
parent 4ba956e45f
commit 5cf289f4ee
1 changed files with 3 additions and 3 deletions

View File

@ -78,7 +78,7 @@ services:
APP_BROKER_MAIL: ${CCP_SEARCHBROKER_USERNAME} APP_BROKER_MAIL: ${CCP_SEARCHBROKER_USERNAME}
APP_BROKER_AUTHTOKEN: ${CCP_SEARCHBROKER_PASSWORD} APP_BROKER_AUTHTOKEN: ${CCP_SEARCHBROKER_PASSWORD}
APP_STORE_BASEURL: "http://bridgehead-ccp-blaze:8080/fhir" APP_STORE_BASEURL: "http://bridgehead-ccp-blaze:8080/fhir"
SPRING_DATASOURCE_URL: "jdbc:postgresql://bridgehead-ccp-share-db:5432/dktk-fed-search-share" SPRING_DATASOURCE_URL: "jdbc:postgresql://bridgehead-ccp-share-db:5432/postgres"
JAVA_TOOL_OPTIONS: -Xmx1g -Dhttp.proxyHost=bridgehead-forward-proxy -Dhttp.proxyPort=3128 -Dhttps.proxyHost=bridgehead-forward-proxy -Dhttps.proxyPort=3128 -Dhttp.noProxyHosts="bridgehead-*" JAVA_TOOL_OPTIONS: -Xmx1g -Dhttp.proxyHost=bridgehead-forward-proxy -Dhttp.proxyPort=3128 -Dhttps.proxyHost=bridgehead-forward-proxy -Dhttps.proxyPort=3128 -Dhttp.noProxyHosts="bridgehead-*"
depends_on: depends_on:
- ccp-search-share-db - ccp-search-share-db
@ -92,8 +92,8 @@ services:
image: "postgres:14" image: "postgres:14"
container_name: bridgehead-ccp-share-db container_name: bridgehead-ccp-share-db
environment: environment:
POSTGRES_USER: "dktk-fed-search-share" POSTGRES_USER: "postgres"
POSTGRES_PASSWORD: "dktk-fed-search-share" POSTGRES_PASSWORD: "postgres"
POSTGRES_DB: "dktk-fed-search-share" POSTGRES_DB: "dktk-fed-search-share"
volumes: volumes:
- "ccp-search-share-db-data:/var/lib/postgresql/data" - "ccp-search-share-db-data:/var/lib/postgresql/data"