Trying to deploy on machine (via rootless podman) where redis requires password and getting:
...
frames | [ioredis] Unhandled error event: ReplyError: NOAUTH Authentication required.
frames | at parseError (/usr/src/app/node_modules/redis-parser/lib/parser.js:179:12)
frames | at parseType (/usr/src/app/node_modules/redis-parser/lib/parser.js:302:14)
frames | [Nest] 140 - 12/17/2025, 4:34:02 PM ERROR [PubSubService] Failed to initialize Config PubSub service
frames | ReplyError: NOAUTH Authentication required.
frames | at parseError (/usr/src/app/node_modules/redis-parser/lib/parser.js:179:12)
frames | at parseType (/usr/src/app/node_modules/redis-parser/lib/parser.js:302:14)
...
Compose file
services:
frames:
image: elevenam/frames:latest
container_name: frames
restart: on-failure:1
networks:
- proxy
ports:
- 4845:3000
environment:
TZ: $TZ
DATABASE_URL: "postgres://$FRMS_DB_UNAME:$FRMS_DB_UPASS@postgres:5432/$FRMS_DB"
# DATABASE_URL: "postgresql://username:password@host:port/dbname"
DIRECT_DATABASE_URL: "postgres://$FRMS_DB_UNAME:$FRMS_DB_UPASS@postgres:5432/$FRMS_DB"
REDIS_HOST: redis
REDIS_PORT: 6379
REDIS_TTL: 86400
REDIS_DB: 0
REDIS_PASSWORD: $RDS_PASS
# REDIS_URL: "redis://:$RDS_PASS@redis:6379/"
JWT_SECRET: $FRMS_JWTSEC
# TMDB_API_KEY: sgsdg # TMDB API key for fetching media information
# FAN_ART_API_KEY: sdgsd # FanArt API key for fetching media artwork
# OPEN_AI_API_KEY: sgsd # OpenAI API key for generating embeddings
volumes:
- $MOVO:/media/Movies
- $SOWO:/media/Shows
networks:
proxy:
driver: bridge
external: true
it looks like authentification variable is for redis which requires auth is not available
Trying to deploy on machine (via rootless podman) where redis requires password and getting:
Compose file
it looks like authentification variable is for redis which requires auth is not available