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 { repositories {
mavenCentral() mavenCentral()
jcenter()
eventuateMavenRepoUrl.split(',').each { repoUrl -> maven { url repoUrl } } eventuateMavenRepoUrl.split(',').each { repoUrl -> maven { url repoUrl } }
} }
} }

View File

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

View File

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

View File

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