mirror of
https://github.com/pcvolkmer/etl-processor.git
synced 2025-04-19 17:26:51 +00:00
chore: deployment environment has maria db entries
This commit is contained in:
parent
9643c80cc5
commit
01ff53ab23
@ -15,12 +15,12 @@ services:
|
||||
db:
|
||||
image: mariadb:10
|
||||
environment:
|
||||
MARIADB_DATABASE: dev
|
||||
MARIADB_USER: dev
|
||||
MARIADB_PASSWORD: dev
|
||||
MARIADB_ROOT_PASSWORD: dev
|
||||
expose:
|
||||
- "3306"
|
||||
MARIADB_DATABASE: ${MARIADB_DB}
|
||||
MARIADB_USER: ${MARIADB_USER}
|
||||
MARIADB_PASSWORD: ${MARIADB_USER_PW}
|
||||
MARIADB_ROOT_PASSWORD: ${MARIADB_ROOT_PW}
|
||||
ports:
|
||||
- "3306:3306"
|
||||
networks:
|
||||
- dnpm_processor
|
||||
networks:
|
||||
|
@ -12,10 +12,15 @@ APP_PSEUDONYMIZE_GPAS_PASSWORD=
|
||||
# path to ca root cert if needed
|
||||
APP_PSEUDONYMIZE_GPAS_SSLCALOCATION=
|
||||
|
||||
MARIADB_DB=dnpm_monitoring
|
||||
MARIADB_USER=$MARIADB_DB
|
||||
MARIADB_USER_PW=MySuperSecurePassword111
|
||||
MARIADB_ROOT_PW=MySuperDuperSecurePassword111
|
||||
|
||||
# monitoring data db
|
||||
SPRING_DATASOURCE_URL:jdbc:mariadb://db:3306/dev
|
||||
SPRING_DATASOURCE_PASSWORD: dev
|
||||
SPRING_DATASOURCE_USERNAME: dev
|
||||
SPRING_DATASOURCE_URL:jdbc:mariadb://db:3306/$MARIADB_DB
|
||||
SPRING_DATASOURCE_PASSWORD: $MARIADB_USER_PW
|
||||
SPRING_DATASOURCE_USERNAME: dnpm_monitoring
|
||||
|
||||
## TARGET SYSTEMS CONFIG
|
||||
# DIRECT BWHC
|
||||
@ -24,14 +29,14 @@ APP_REST_URI=
|
||||
|
||||
## Apache KAFKA
|
||||
# list of broker instances
|
||||
APP_KAFKA_SERVERS=
|
||||
#APP_KAFKA_SERVERS=
|
||||
|
||||
# produce mtb files to this topic
|
||||
APP_KAFKA_TOPIC=mtb-file-json
|
||||
#APP_KAFKA_TOPIC=mtb-file-json
|
||||
|
||||
# here we receive responses from bwhc
|
||||
APP_KAFKA_RESPONSE_TOPIC=
|
||||
APP_KAFKA_GROUP_ID=dnpm
|
||||
#APP_KAFKA_RESPONSE_TOPIC=
|
||||
#APP_KAFKA_GROUP_ID=dnpm
|
||||
|
||||
# SSL or PLAINTEXT
|
||||
SPRING_KAFKA_SECURITY_PROTOCOL=PLAINTEXT
|
||||
|
Loading…
x
Reference in New Issue
Block a user