Merge pull request #34 from dartpopikyardo/event-sourcing-examples-33

updated Eventuate versions and the app Docker containers
This commit is contained in:
Chris Richardson
2017-01-21 11:20:35 -08:00
committed by GitHub
4 changed files with 14 additions and 7 deletions

View File

@@ -23,6 +23,7 @@ subprojects {
repositories {
mavenCentral()
jcenter()
eventuateMavenRepoUrl.split(',').each { repoUrl -> maven { url repoUrl } }
}
}

View File

@@ -1,5 +1,6 @@
apigateway:
build: ./api-gateway-service/
restart: unless-stopped
ports:
- "8080:8080"
environment:
@@ -13,16 +14,19 @@ apigateway:
accountsservice:
build: ./accounts-service/
restart: unless-stopped
ports:
- "8085:8080"
transactionsservice:
build: ./transactions-service/
restart: unless-stopped
ports:
- "8082:8080"
accountsviewservice:
build: ./accounts-view-service/
restart: unless-stopped
environment:
SPRING_DATA_MONGODB_URI: mongodb://mongodb/mydb
ports:
@@ -30,11 +34,13 @@ accountsviewservice:
customersservice:
build: ./customers-service/
restart: unless-stopped
ports:
- "8083:8080"
customersviewservice:
build: ./customers-view-service/
restart: unless-stopped
ports:
- "8084:8080"
environment:

View File

@@ -1,5 +1,5 @@
zookeeper:
image: eventuateio/eventuateio-local-zookeeper:0.6.0
image: eventuateio/eventuateio-local-zookeeper:0.9.0
ports:
- 2181:2181
- 2888:2888
@@ -7,7 +7,7 @@ zookeeper:
kafka:
image: eventuateio/eventuateio-local-kafka:0.6.0
image: eventuateio/eventuateio-local-kafka:0.9.0
ports:
- 9092:9092
links:
@@ -18,7 +18,7 @@ kafka:
- ZOOKEEPER_SERVERS=zookeeper:2181
mysql:
image: eventuateio/eventuateio-local-mysql:0.6.0
image: eventuateio/eventuateio-local-mysql:0.9.0
ports:
- 3306:3306
environment:
@@ -28,7 +28,7 @@ mysql:
cdcservice:
image: eventuateio/eventuateio-local-cdc-service:0.6.0
image: eventuateio/eventuateio-local-cdc-service:0.9.0
ports:
- "8099:8080"
links:

View File

@@ -1,9 +1,9 @@
org.gradle.jvmargs=-XX:MaxPermSize=512m
eventuateMavenRepoUrl=http://mavenrepo.eventuate.io/release
eventuateMavenRepoUrl=
springBootVersion=1.3.5.RELEASE
eventuateClientVersion=0.12.0.RELEASE
eventuateLocalVersion=0.4.0.RELEASE
eventuateClientVersion=0.14.0.RELEASE
eventuateLocalVersion=0.11.0.RELEASE