Skip to content

Commit

Permalink
Bump Docker Compose dependency versions (#243)
Browse files Browse the repository at this point in the history
  • Loading branch information
kibertoad authored Aug 16, 2023
1 parent 68f1656 commit ed1aff7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
services:
mysql:
image: mysql:8.0.28-oracle
image: mysql:8.0.34
ports:
- ${DOCKER_MYSQL_PORT:-3306}:3306
volumes:
Expand All @@ -12,7 +12,7 @@ services:
- MYSQL_DATABASE=service_db

waitmysql:
image: mysql:8.0.28-oracle
image: mysql:8.0.34
links:
- mysql
depends_on:
Expand All @@ -23,15 +23,15 @@ services:
- 'until /usr/bin/mysql -hmysql -userviceuser -ppass -e "SELECT 1"; do sleep 5; done'

redis:
image: redis:6.2.7-alpine
image: redis:6.2.13-alpine
command: redis-server --requirepass sOmE_sEcUrE_pAsS
ports:
- ${DOCKER_REDIS_PORT:-6379}:6379
volumes:
- redis_data:/redis/data:cached

rabbitmq:
image: rabbitmq:3.12.0-management
image: rabbitmq:3.12.2-management
ports:
- ${DOCKER_RABBITMQ_CLIENT_PORT:-5672}:5672
- ${DOCKER_RABBITMQ_MANAGEMENT_PORT:-15672}:15672
Expand Down

0 comments on commit ed1aff7

Please sign in to comment.