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 1ec1fa9 commit f97902f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .drone/pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ steps :

services :
- name : rabbitmq
image : rabbitmq:3.11-management-alpine
image : rabbitmq:3.12-management-alpine
environment :
RABBITMQ_DEFAULT_USER : svc_testing
RABBITMQ_DEFAULT_PASS : svc_testing
Expand Down
6 changes: 3 additions & 3 deletions docker-compose.dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version : '3.8'
services :
rabbitmq :
container_name : quickstart-amqp-dev-consuming-hello-rabbitmq
image : rabbitmq:3.11-management-alpine
image : rabbitmq:3.12-management-alpine
restart : unless-stopped
environment :
- RABBITMQ_DEFAULT_USER=svc_testing
Expand All @@ -15,7 +15,7 @@ services :
- '15672:15672'
prometheus :
container_name : quickstart-amqp-dev-consuming-hello-prometheus
image : prom/prometheus:v2.44.0
image : prom/prometheus:v2.47.2
volumes :
- ./src/main/docker/prometheus/:/etc/prometheus/
command :
Expand All @@ -25,7 +25,7 @@ services :
network_mode : 'host' # to test locally running service
grafana :
container_name : quickstart-amqp-dev-consuming-hello-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
4 changes: 4 additions & 0 deletions src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ spring :
port : ${RABBITMQ_PORT:5672}
username : ${RABBITMQ_USERNAME:svc_testing}
password : ${RABBITMQ_PASSWORD:svc_testing}
amqp :
deserialization :
trust :
all : true
devtools :
add-properties : false
restart :
Expand Down

0 comments on commit f97902f

Please sign in to comment.