Skip to content

Commit

Permalink
Upgraded some infrastructure services
Browse files Browse the repository at this point in the history
  • Loading branch information
cer committed Aug 26, 2018
1 parent bc737ee commit b9ddb8f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
version: '3'
services:
zookeeper:
image: eventuateio/eventuateio-local-zookeeper:0.20.1.RELEASE
image: eventuateio/eventuateio-local-zookeeper:0.21.0.RELEASE
ports:
- 2181:2181
- 2888:2888
- 3888:3888
kafka:
image: eventuateio/eventuateio-local-kafka:0.20.1.RELEASE
image: eventuateio/eventuateio-local-kafka:0.21.0.RELEASE
ports:
- 9092:9092
depends_on:
Expand All @@ -25,7 +25,7 @@ services:
- MYSQL_USER=mysqluser
- MYSQL_PASSWORD=mysqlpw
tram-cdc-service:
image: eventuateio/eventuate-tram-cdc-mysql-service:0.9.0.RELEASE
image: eventuateio/eventuate-tram-cdc-mysql-service:0.10.0.RELEASE
ports:
- "8099:8080"
depends_on:
Expand All @@ -43,7 +43,7 @@ services:
EVENTUATELOCAL_CDC_BINLOG_CLIENT_ID: 1234567890
EVENTUATELOCAL_CDC_SOURCE_TABLE_NAME: message
eventuate-local-cdc-service:
image: eventuateio/eventuateio-local-new-cdc-service:0.20.1.RELEASE
image: eventuateio/eventuateio-local-new-cdc-service:0.21.0.RELEASE
ports:
- "8098:8080"
depends_on:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,8 +163,9 @@ public void placeOrder() {

response = given().
body(new CreateOrderRequest(consumerId,
RestaurantMother.AJANTA_ID, Collections.singletonList(new CreateOrderRequest.LineItem(RestaurantMother.CHICKEN_VINDALOO_MENU_ITEM_ID,
OrderDetailsMother.CHICKEN_VINDALOO_QUANTITY)))).
RestaurantMother.AJANTA_ID, Collections.singletonList(
new CreateOrderRequest.LineItem(RestaurantMother.CHICKEN_VINDALOO_MENU_ITEM_ID,
OrderDetailsMother.CHICKEN_VINDALOO_QUANTITY)))).
contentType("application/json").
when().
post(baseUrl("/orders"));
Expand Down
2 changes: 1 addition & 1 deletion mysql/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
FROM eventuateio/eventuate-tram-sagas-mysql:0.5.0.RELEASE
FROM eventuateio/eventuate-tram-sagas-mysql:0.6.0.RELEASE
COPY eventuate-local-schema-mysql.sql /docker-entrypoint-initdb.d/z-eventuate-local-schema-mysql.sql

0 comments on commit b9ddb8f

Please sign in to comment.