Implement robust Redis URL parsing and connection checking

This commit is contained in:
Andreas Dueren
2025-07-15 08:25:26 -06:00
parent 6656311f89
commit 34c2d30c0c
3 changed files with 160 additions and 16 deletions

View File

@@ -27,9 +27,9 @@ COPY nginx.conf /etc/nginx/sites-available/default
# Make scripts executable
RUN chmod +x /app/code/start.sh
# Install supervisord for process management
# Install supervisord and netcat for process management and connectivity checks
RUN apt-get update && \
apt-get install -y supervisor && \
apt-get install -y supervisor netcat-openbsd && \
rm -rf /var/lib/apt/lists/*
COPY supervisord.conf /etc/supervisor/conf.d/supervisord.conf