- Add GitHub Actions CI/CD pipeline - Configure Nginx reverse proxy for robeing services - Setup docker-compose for full stack deployment - Include health checks for all services - Support for PostgreSQL and Redis data persistence 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
21 lines
471 B
Docker
21 lines
471 B
Docker
FROM nginx:1.25-alpine
|
|
|
|
# Copy custom nginx configuration
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
|
|
# Create log directory
|
|
RUN mkdir -p /var/log/nginx
|
|
|
|
# Set proper permissions
|
|
RUN chown -R nginx:nginx /var/log/nginx
|
|
RUN chown -R nginx:nginx /var/cache/nginx
|
|
|
|
# Add healthcheck
|
|
HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \
|
|
CMD curl -f http://localhost/health || exit 1
|
|
|
|
# Expose port
|
|
EXPOSE 80
|
|
|
|
# Start nginx
|
|
CMD ["nginx", "-g", "daemon off;"] |