add redis password
This commit is contained in:
parent
9ce7dd6a0f
commit
e1a15c93e5
|
@ -16,6 +16,7 @@ POSTGRES_IMAGE=postgres:15.0
|
||||||
# REDIS
|
# REDIS
|
||||||
REDIS_IMAGE=redis:7.0-alpine
|
REDIS_IMAGE=redis:7.0-alpine
|
||||||
REDIS_HOST=v3-user-redis
|
REDIS_HOST=v3-user-redis
|
||||||
|
REDIS_PASSWORD=redis
|
||||||
REDIS_PORT=6379
|
REDIS_PORT=6379
|
||||||
|
|
||||||
# CACHE
|
# CACHE
|
||||||
|
|
|
@ -24,6 +24,7 @@ services:
|
||||||
v3-user-redis:
|
v3-user-redis:
|
||||||
container_name: v3-user-redis
|
container_name: v3-user-redis
|
||||||
image: ${REDIS_IMAGE}
|
image: ${REDIS_IMAGE}
|
||||||
|
command: redis-server --requirepass ${REDIS_PASSWORD}
|
||||||
ports:
|
ports:
|
||||||
- 6501:6379
|
- 6501:6379
|
||||||
volumes:
|
volumes:
|
||||||
|
|
|
@ -21,6 +21,7 @@ import { SetConfigurationUseCase } from './domain/usecases/set-configuration.use
|
||||||
config: {
|
config: {
|
||||||
host: configService.get<string>('REDIS_HOST'),
|
host: configService.get<string>('REDIS_HOST'),
|
||||||
port: configService.get<number>('REDIS_PORT'),
|
port: configService.get<number>('REDIS_PORT'),
|
||||||
|
password: configService.get<string>('REDIS_PASSWORD'),
|
||||||
},
|
},
|
||||||
}),
|
}),
|
||||||
}),
|
}),
|
||||||
|
|
|
@ -39,6 +39,7 @@ import { UserProfile } from './mappers/user.profile';
|
||||||
store: await redisStore({
|
store: await redisStore({
|
||||||
host: configService.get<string>('REDIS_HOST'),
|
host: configService.get<string>('REDIS_HOST'),
|
||||||
port: configService.get<number>('REDIS_PORT'),
|
port: configService.get<number>('REDIS_PORT'),
|
||||||
|
password: configService.get<string>('REDIS_PASSWORD'),
|
||||||
ttl: configService.get('CACHE_TTL'),
|
ttl: configService.get('CACHE_TTL'),
|
||||||
}),
|
}),
|
||||||
}),
|
}),
|
||||||
|
|
Loading…
Reference in New Issue