Skip to content

Commit 44ae3e2

Browse files
committedMar 10, 2023
fix the UTF8 for icon display and added a new create-image script for easy access
1 parent 08c040e commit 44ae3e2

File tree

2 files changed

+15
-0
lines changed

2 files changed

+15
-0
lines changed
 

‎create-images.sh

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
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 ..

‎docker-compose.yml

+3
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,9 @@ services:
2727
container_name: creek-consumer
2828
environment:
2929
- SPRING_RABBITMQ_HOST=rabbitmq
30+
- LANG=en_US.utf8
31+
- LC_ALL=en_US.utf8
32+
- JDK_JAVA_OPTIONS='-Dfile.encoding=UTF-8'
3033
depends_on:
3134
- rabbitmq
3235

0 commit comments

Comments
 (0)
Please sign in to comment.