Skip to content

Commit

Permalink
chore: upgrade docker images for underlying services
Browse files Browse the repository at this point in the history
  • Loading branch information
Dima Denysenko committed Oct 25, 2023
1 parent 0a2ad7c commit 1493821
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ It uses three microservices:

### Technology stack

java 21, Maven 3, Spring Boot, Spring Cloud, mysql:5.7.41, rabbitmq:3.8
java 21, Maven 3, Spring Boot, Spring Cloud, mysql:5.7.43, rabbitmq:3.8

_Including utils:_ liquibase, WireMock, Mysql testcontainers, docker-compose._dev_.yml,
_checkstyle_ configuration, SpotBugs, PMD etc.
Expand Down
2 changes: 1 addition & 1 deletion dashboard-service/src/test/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ embedded :
rabbitmq :
enabled : true
reuse-container : true
docker-image : rabbitmq:3.11-management-alpine
docker-image : rabbitmq:3.12-management-alpine

ujar :
build :
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ services :

rabbitmq :
container_name : bookingdb-rabbitmq
image : rabbitmq:3.11-management-alpine
image : rabbitmq:3.12-management-alpine
restart : unless-stopped
environment :
- RABBITMQ_DEFAULT_USER=svc_testing
Expand All @@ -29,7 +29,7 @@ services :

prometheus :
container_name : bookingdb-prometheus
image : prom/prometheus:v2.44.0
image : prom/prometheus:v2.47.2
volumes :
- ./src/main/docker/prometheus/:/etc/prometheus/
command :
Expand All @@ -39,7 +39,7 @@ services :
network_mode : 'host' # to test locally running service
grafana :
container_name : bookingdb-grafana
image : grafana/grafana:9.5.2
image : grafana/grafana:10.2.0
volumes :
- ./src/main/docker/grafana/provisioning/:/etc/grafana/provisioning/
environment :
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ services :

rabbitmq :
container_name : bookingdb-demo-rabbitmq
image : rabbitmq:3.11-management-alpine
image : rabbitmq:3.12-management-alpine
restart : unless-stopped
ports :
# AMQP protocol port
Expand Down
2 changes: 1 addition & 1 deletion importer-service/src/test/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ embedded :
rabbitmq :
enabled : true
reuse-container : true
docker-image : rabbitmq:3.11-management-alpine
docker-image : rabbitmq:3.12-management-alpine

ujar :
build :
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec :
spec :
containers :
- name : mysql
image : mysql:5.7.41
image : mysql:5.7.43
ports :
- containerPort : 3306
env :
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ spec :
spec :
containers :
- name : rabbitmq
image : rabbitmq:3.11-management-alpine
image : rabbitmq:3.12-management-alpine
ports :
- containerPort : 5672
- containerPort : 15672
Expand Down

0 comments on commit 1493821

Please sign in to comment.