Skip to content

Commit

Permalink
Merge pull request #34 from dartpopikyardo/event-sourcing-examples-33
Browse files Browse the repository at this point in the history
updated Eventuate versions and the app Docker containers
  • Loading branch information
cer committed Jan 21, 2017
2 parents edcfd9e + 1a2378b commit 7dcafe5
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
1 change: 1 addition & 0 deletions java-spring/build.gradle
Expand Up @@ -23,6 +23,7 @@ subprojects {

repositories {
mavenCentral()
jcenter()
eventuateMavenRepoUrl.split(',').each { repoUrl -> maven { url repoUrl } }
}
}
6 changes: 6 additions & 0 deletions java-spring/docker-compose-common.yml
@@ -1,5 +1,6 @@
apigateway:
build: ./api-gateway-service/
restart: unless-stopped
ports:
- "8080:8080"
environment:
Expand All @@ -13,28 +14,33 @@ 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:
- "8081:8080"

customersservice:
build: ./customers-service/
restart: unless-stopped
ports:
- "8083:8080"

customersviewservice:
build: ./customers-view-service/
restart: unless-stopped
ports:
- "8084:8080"
environment:
Expand Down
8 changes: 4 additions & 4 deletions java-spring/docker-compose-eventuate-local.yml
@@ -1,13 +1,13 @@
zookeeper:
image: eventuateio/eventuateio-local-zookeeper:0.6.0
image: eventuateio/eventuateio-local-zookeeper:0.9.0
ports:
- 2181:2181
- 2888:2888
- 3888:3888


kafka:
image: eventuateio/eventuateio-local-kafka:0.6.0
image: eventuateio/eventuateio-local-kafka:0.9.0
ports:
- 9092:9092
links:
Expand All @@ -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:
Expand All @@ -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:
Expand Down
6 changes: 3 additions & 3 deletions java-spring/gradle.properties
@@ -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

0 comments on commit 7dcafe5

Please sign in to comment.