Created
August 30, 2024 18:17
-
-
Save michael-grunder/9676b8ef2eb4c199752b2aa0bc1707df to your computer and use it in GitHub Desktop.
PHP 8.4 alpha1 + PhpRedis Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:22.04 | |
ENV PHP_VERSION=8.4.0alpha1 | |
ENV PHPREDIS_VERSION=develop | |
RUN apt-get update && apt-get install -y \ | |
build-essential \ | |
wget \ | |
curl \ | |
libxml2-dev \ | |
libssl-dev \ | |
libcurl4-openssl-dev \ | |
libpng-dev \ | |
libjpeg-dev \ | |
libfreetype6-dev \ | |
libonig-dev \ | |
libmcrypt-dev \ | |
libxslt1-dev \ | |
libzip-dev \ | |
git \ | |
redis-server \ | |
pkg-config \ | |
autoconf \ | |
neovim \ | |
&& apt-get clean | |
RUN cd /usr/local/src && \ | |
wget https://downloads.php.net/~saki/php-${PHP_VERSION}.tar.bz2 && \ | |
tar -xjf php-${PHP_VERSION}.tar.bz2 && \ | |
cd php-${PHP_VERSION} | |
RUN cd /usr/local/src/php-${PHP_VERSION} && \ | |
./configure \ | |
--disable-all \ | |
--enable-json \ | |
--enable-hash \ | |
--enable-session \ | |
--with-openssl \ | |
--enable-mbstring && \ | |
make -j$(nproc) && \ | |
make install | |
RUN cd /usr/local/src && \ | |
git clone --depth 1 --branch ${PHPREDIS_VERSION} https://github.com/phpredis/phpredis.git && \ | |
cd phpredis && \ | |
phpize && \ | |
./configure && \ | |
make -j$(nproc) && \ | |
make install | |
RUN echo "extension=redis.so" >> /usr/local/lib/php.ini && \ | |
echo "redis.clusters.seeds=\"mycluster[]=redis-node-1:7000\"" >> /usr/local/lib/php.ini | |
RUN echo '<?php\n\ | |
$redis = new RedisCluster("mycluster");\n\ | |
$redis->set("Foo", "bar");\n\ | |
echo $redis->get("Foo");\n\ | |
$redis->close();\n\ | |
' > /usr/local/bin/test_redis_cluster.php | |
RUN mkdir -p /etc/redis && \ | |
for port in 7000 7001 7002; do \ | |
mkdir -p /etc/redis/$port; \ | |
echo "port $port" > /etc/redis/$port/redis.conf; \ | |
echo "cluster-enabled yes" >> /etc/redis/$port/redis.conf; \ | |
echo "cluster-config-file nodes-$port.conf" >> /etc/redis/$port/redis.conf; \ | |
echo "cluster-node-timeout 5000" >> /etc/redis/$port/redis.conf; \ | |
echo "appendonly yes" >> /etc/redis/$port/redis.conf; \ | |
echo "daemonize yes" >> /etc/redis/$port/redis.conf; \ | |
done | |
RUN mkdir -p /usr/local/bin && \ | |
echo '#!/bin/bash' > /usr/local/bin/setup_redis_cluster.sh && \ | |
echo 'for port in 7000 7001 7002; do' >> /usr/local/bin/setup_redis_cluster.sh && \ | |
echo ' redis-server /etc/redis/$port/redis.conf;' >> /usr/local/bin/setup_redis_cluster.sh && \ | |
echo 'done' >> /usr/local/bin/setup_redis_cluster.sh && \ | |
echo 'sleep 5' >> /usr/local/bin/setup_redis_cluster.sh && \ | |
echo 'echo "yes" | redis-cli --cluster create 127.0.0.1:7000 127.0.0.1:7001 127.0.0.1:7002 --cluster-replicas 0' >> /usr/local/bin/setup_redis_cluster.sh && \ | |
echo 'tail -f /dev/null' >> /usr/local/bin/setup_redis_cluster.sh && \ | |
chmod +x /usr/local/bin/setup_redis_cluster.sh | |
CMD ["/usr/local/bin/setup_redis_cluster.sh"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment