From 3e75203ff0df26be22b7d992cda784c448abf1a2 Mon Sep 17 00:00:00 2001 From: Dan Lorenc <dlorenc@google.com> Date: Tue, 30 Mar 2021 13:21:37 -0500 Subject: [PATCH] Stop exposing the redis server port on the host. This was triggering some internal security scans we have, everything still works with it only exposed locally. Signed-off-by: Dan Lorenc <dlorenc@google.com> --- docker-compose.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 2fea940..bf6ae12 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -22,8 +22,6 @@ services: "--appendonly", "yes" ] - ports: - - "6379:6379" restart: always # keep the redis server running healthcheck: test: ["CMD", "redis-cli", "ping"] -- GitLab