- updated eventuate libs version
- updated docker-compose script: added a restart config to the app services
This commit is contained in:
@@ -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:
|
||||||
|
|||||||
@@ -5,5 +5,5 @@ eventuateMavenRepoUrl=http://mavenrepo.eventuate.io/release
|
|||||||
|
|
||||||
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
|
||||||
|
|||||||
Reference in New Issue
Block a user