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:
|
db:
|
||||||
image: mariadb:10
|
image: mariadb:10
|
||||||
environment:
|
environment:
|
||||||
MARIADB_DATABASE: dev
|
MARIADB_DATABASE: ${MARIADB_DB}
|
||||||
MARIADB_USER: dev
|
MARIADB_USER: ${MARIADB_USER}
|
||||||
MARIADB_PASSWORD: dev
|
MARIADB_PASSWORD: ${MARIADB_USER_PW}
|
||||||
MARIADB_ROOT_PASSWORD: dev
|
MARIADB_ROOT_PASSWORD: ${MARIADB_ROOT_PW}
|
||||||
expose:
|
ports:
|
||||||
- "3306"
|
- "3306:3306"
|
||||||
networks:
|
networks:
|
||||||
- dnpm_processor
|
- dnpm_processor
|
||||||
networks:
|
networks:
|
||||||
|
@ -12,10 +12,15 @@ APP_PSEUDONYMIZE_GPAS_PASSWORD=
|
|||||||
# path to ca root cert if needed
|
# path to ca root cert if needed
|
||||||
APP_PSEUDONYMIZE_GPAS_SSLCALOCATION=
|
APP_PSEUDONYMIZE_GPAS_SSLCALOCATION=
|
||||||
|
|
||||||
|
MARIADB_DB=dnpm_monitoring
|
||||||
|
MARIADB_USER=$MARIADB_DB
|
||||||
|
MARIADB_USER_PW=MySuperSecurePassword111
|
||||||
|
MARIADB_ROOT_PW=MySuperDuperSecurePassword111
|
||||||
|
|
||||||
# monitoring data db
|
# monitoring data db
|
||||||
SPRING_DATASOURCE_URL:jdbc:mariadb://db:3306/dev
|
SPRING_DATASOURCE_URL:jdbc:mariadb://db:3306/$MARIADB_DB
|
||||||
SPRING_DATASOURCE_PASSWORD: dev
|
SPRING_DATASOURCE_PASSWORD: $MARIADB_USER_PW
|
||||||
SPRING_DATASOURCE_USERNAME: dev
|
SPRING_DATASOURCE_USERNAME: dnpm_monitoring
|
||||||
|
|
||||||
## TARGET SYSTEMS CONFIG
|
## TARGET SYSTEMS CONFIG
|
||||||
# DIRECT BWHC
|
# DIRECT BWHC
|
||||||
@ -24,14 +29,14 @@ APP_REST_URI=
|
|||||||
|
|
||||||
## Apache KAFKA
|
## Apache KAFKA
|
||||||
# list of broker instances
|
# list of broker instances
|
||||||
APP_KAFKA_SERVERS=
|
#APP_KAFKA_SERVERS=
|
||||||
|
|
||||||
# produce mtb files to this topic
|
# produce mtb files to this topic
|
||||||
APP_KAFKA_TOPIC=mtb-file-json
|
#APP_KAFKA_TOPIC=mtb-file-json
|
||||||
|
|
||||||
# here we receive responses from bwhc
|
# here we receive responses from bwhc
|
||||||
APP_KAFKA_RESPONSE_TOPIC=
|
#APP_KAFKA_RESPONSE_TOPIC=
|
||||||
APP_KAFKA_GROUP_ID=dnpm
|
#APP_KAFKA_GROUP_ID=dnpm
|
||||||
|
|
||||||
# SSL or PLAINTEXT
|
# SSL or PLAINTEXT
|
||||||
SPRING_KAFKA_SECURITY_PROTOCOL=PLAINTEXT
|
SPRING_KAFKA_SECURITY_PROTOCOL=PLAINTEXT
|
||||||
|
Loading…
x
Reference in New Issue
Block a user