minor changes

This commit is contained in:
2ManyProjects 2025-05-05 03:13:01 -05:00
parent 7b45659a50
commit 2f32cb7deb
2 changed files with 3 additions and 1791 deletions

1788
backend/package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -61,15 +61,15 @@ services:
# Redis service - only active in cloud mode # Redis service - only active in cloud mode
redis: redis:
image: redis:alpine image: redis:alpine
command: ${REDIS_PASSWORD:+--requirepass ${REDIS_PASSWORD}} command: ["sh", "-c", "redis-server ${REDIS_PASSWORD:+--requirepass $REDIS_PASSWORD}"]
volumes: volumes:
- redis_data:/data - redis_data:/data
networks: networks:
- app-network - app-network
profiles: profiles:
- ${DEPLOYMENT_MODE:-self-hosted} == cloud ? default : tools - cloud
healthcheck: healthcheck:
test: ["CMD", "redis-cli", ${REDIS_PASSWORD:+"-a", "${REDIS_PASSWORD}"}, "ping"] test: ["CMD", "redis-cli", "${REDIS_PASSWORD:+--pass}", "${REDIS_PASSWORD}", "ping"]
interval: 5s interval: 5s
timeout: 5s timeout: 5s
retries: 5 retries: 5