From 2260e14868c16d45c36324ae75a71e0bd3b1498d Mon Sep 17 00:00:00 2001 From: JJimenez71 Date: Thu, 7 Sep 2023 19:30:29 -0600 Subject: [PATCH] Pinned versions of docker containers --- docker-compose.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 800690206..c327c10a9 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -2,7 +2,7 @@ version: '3' services: nginx: - image: nginx:latest + image: nginx:1.25.2 restart: unless-stopped ports: - "1333:80" @@ -38,7 +38,7 @@ services: ports: - "8000" redis_activity: - image: redis + image: redis:7.2.1 command: redis-server --requirepass ${REDIS_ACTIVITY_PASSWORD} --appendonly yes --port ${REDIS_ACTIVITY_PORT} volumes: - ./redis.conf:/etc/redis/redis.conf @@ -48,7 +48,7 @@ services: - main restart: on-failure redis_broker: - image: redis + image: redis:7.2.1 command: redis-server --requirepass ${REDIS_BROKER_PASSWORD} --appendonly yes --port ${REDIS_BROKER_PORT} volumes: - ./redis.conf:/etc/redis/redis.conf