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
This commit is contained in:
@@ -18,7 +18,7 @@ DATABASE_CONNECTION_POOL_MAX=
|
|||||||
# PGSSLMODE=disable
|
# PGSSLMODE=disable
|
||||||
|
|
||||||
# For redis you can either specify an ioredis compatible url like this
|
# 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,
|
# or alternatively, if you would like to provide addtional connection options,
|
||||||
# use a base64 encoded JSON connection option object. Refer to the ioredis documentation
|
# use a base64 encoded JSON connection option object. Refer to the ioredis documentation
|
||||||
# for a list of available options.
|
# for a list of available options.
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ services:
|
|||||||
redis:
|
redis:
|
||||||
image: redis
|
image: redis
|
||||||
ports:
|
ports:
|
||||||
- "127.0.0.1:6479:6379"
|
- "127.0.0.1:6379:6379"
|
||||||
user: "redis:redis"
|
user: "redis:redis"
|
||||||
postgres:
|
postgres:
|
||||||
image: postgres
|
image: postgres
|
||||||
|
|||||||
Reference in New Issue
Block a user