Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions create-images.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/bin/zsh

cd creekconsumer
./mvnw spring-boot:build-image -Dspring-boot.build-image.imageName=creek-consumer -DskipTests
cd ../creekproducer
./mvnw spring-boot:build-image -Dspring-boot.build-image.imageName=creek-producer -DskipTests
cd ../creektransformer
./mvnw spring-boot:build-image -Dspring-boot.build-image.imageName=creek-transformer -DskipTests
cd ../creekmeasurementrepositoryconsumer
./mvnw spring-boot:build-image -Dspring-boot.build-image.imageName=creek-storage -DskipTests
# shellcheck disable=SC2103
cd ..
3 changes: 3 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ services:
container_name: creek-consumer
environment:
- SPRING_RABBITMQ_HOST=rabbitmq
- LANG=en_US.utf8
- LC_ALL=en_US.utf8
- JDK_JAVA_OPTIONS='-Dfile.encoding=UTF-8'
depends_on:
- rabbitmq

Expand Down