From 0ae559f7bf416caab8d749872fd5a14044bf8204 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lennart=20L=C3=B6sche?= Date: Mon, 30 May 2022 19:06:10 +0200 Subject: [PATCH] Update redis port in sample env file (#3596) * fix redis port The wrong Redis port is specified in the sample file, we fixed that * adjust redis port in docker-compose --- .env.sample | 2 +- docker-compose.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.sample b/.env.sample index 55dd598064..78508dac6e 100644 --- a/.env.sample +++ b/.env.sample @@ -18,7 +18,7 @@ DATABASE_CONNECTION_POOL_MAX= # PGSSLMODE=disable # For redis you can either specify an ioredis compatible url like this -REDIS_URL=redis://localhost:6479 +REDIS_URL=redis://localhost:6379 # or alternatively, if you would like to provide addtional connection options, # use a base64 encoded JSON connection option object. Refer to the ioredis documentation # for a list of available options. diff --git a/docker-compose.yml b/docker-compose.yml index f2c62cb8aa..9a1e1b741f 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -3,7 +3,7 @@ services: redis: image: redis ports: - - "127.0.0.1:6479:6379" + - "127.0.0.1:6379:6379" user: "redis:redis" postgres: image: postgres