File tree 2 files changed +15
-0
lines changed
2 files changed +15
-0
lines changed Original file line number Diff line number Diff line change
1
+ #! /bin/zsh
2
+
3
+ cd creekconsumer
4
+ ./mvnw spring-boot:build-image -Dspring-boot.build-image.imageName=creek-consumer -DskipTests
5
+ cd ../creekproducer
6
+ ./mvnw spring-boot:build-image -Dspring-boot.build-image.imageName=creek-producer -DskipTests
7
+ cd ../creektransformer
8
+ ./mvnw spring-boot:build-image -Dspring-boot.build-image.imageName=creek-transformer -DskipTests
9
+ cd ../creekmeasurementrepositoryconsumer
10
+ ./mvnw spring-boot:build-image -Dspring-boot.build-image.imageName=creek-storage -DskipTests
11
+ # shellcheck disable=SC2103
12
+ cd ..
Original file line number Diff line number Diff line change @@ -27,6 +27,9 @@ services:
27
27
container_name : creek-consumer
28
28
environment :
29
29
- SPRING_RABBITMQ_HOST=rabbitmq
30
+ - LANG=en_US.utf8
31
+ - LC_ALL=en_US.utf8
32
+ - JDK_JAVA_OPTIONS='-Dfile.encoding=UTF-8'
30
33
depends_on :
31
34
- rabbitmq
32
35
You can’t perform that action at this time.
0 commit comments