From 9fe73774ef202cf128b2e4777b224808086d8d0d Mon Sep 17 00:00:00 2001 From: Nils Herde Date: Thu, 14 Nov 2024 11:43:41 +0100 Subject: [PATCH] fix: Redis container missing name in compose-file This fixes a bug where the other containers are not able to reach redis on the network because docker does not assign the expected DNS entry to the container. --- docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yml b/docker-compose.yml index ef1f57ba..7324b3b8 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,6 +3,7 @@ networks: services: dawarich_redis: image: redis:7.0-alpine + container_name: dawarich_redis command: redis-server networks: - dawarich