Start Dockerized
Dynamic configuration started
This commit is contained in:
parent
30ccfa9604
commit
945c57ddfd
44 changed files with 1544 additions and 321 deletions
|
|
@ -0,0 +1,12 @@
|
|||
FROM openjdk:8-jre-slim
|
||||
|
||||
|
||||
ADD application.properties /application.properties
|
||||
ADD maven/drools-framework-admin-console.jar app.jar
|
||||
|
||||
EXPOSE 8200
|
||||
|
||||
RUN bash -c 'touch /app.jar'
|
||||
|
||||
ENTRYPOINT ["java","-Dspring.config.location=file:./","-jar","/app.jar"]
|
||||
#ENTRYPOINT ["java","-jar","/app.jar"]
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
spring.data.elasticsearch.cluster-nodes=elasticsearchhost:9300
|
||||
|
||||
|
||||
spring.data.mongodb.database=businessProxyDB
|
||||
spring.data.mongodb.host=mongodb:27017
|
||||
|
||||
server.port=${port:8200}
|
||||
kie-wb.baseurl=http://kie-wb:8080/kie-wb/rest
|
||||
kie-wb.username=admin
|
||||
kie-wb.password=admin
|
||||
|
||||
spring.servlet.multipart.enabled=false
|
||||
Loading…
Add table
editor.link_modal.header
Reference in a new issue