ci: use redis credentials only on prod env
This commit is contained in:
parent
94cf57cfda
commit
68e6967cee
@ -1,7 +1,7 @@
|
|||||||
import { createClient } from 'redis'
|
import { createClient } from 'redis'
|
||||||
|
|
||||||
const getRedisOptions = () => {
|
const getRedisOptions = () => {
|
||||||
if (import.meta.env.NODE_ENV !== 'production') {
|
if (import.meta.env.NODE_ENV === 'production') {
|
||||||
return {
|
return {
|
||||||
password: import.meta.env.REDIS_PASSWORD,
|
password: import.meta.env.REDIS_PASSWORD,
|
||||||
url: import.meta.env.REDIS_URL,
|
url: import.meta.env.REDIS_URL,
|
||||||
|
@ -15,7 +15,7 @@ services:
|
|||||||
restart: always
|
restart: always
|
||||||
ports:
|
ports:
|
||||||
- '6379:6379'
|
- '6379:6379'
|
||||||
command: redis-server --save 20 1 --loglevel warning --requirepass development
|
# command: redis-server --save 20 1 --loglevel warning --requirepass development
|
||||||
|
|
||||||
loki:
|
loki:
|
||||||
image: grafana/loki:latest
|
image: grafana/loki:latest
|
||||||
|
Loading…
Reference in New Issue
Block a user