Files
k3s/002-infra/002-wordpress/Dockerfile
2026-02-05 00:11:05 +08:00

9 lines
204 B
Docker

# Custom WordPress image with Redis PHP extension
FROM wordpress:latest
# Install Redis PHP extension
RUN pecl install redis && docker-php-ext-enable redis
# Verify installation
RUN php -m | grep redis