Добавлен keydb

This commit is contained in:
2025-03-03 01:48:24 +08:00
parent cb38d26abe
commit 56bc180de5
11 changed files with 3447 additions and 7 deletions

View File

@@ -4,8 +4,16 @@ RUN apt update && \
apt upgrade -y && \
apt install -y git
# https://pecl.php.net/package/redis
RUN pecl channel-update pecl.php.net && \
pecl install redis && \
docker-php-ext-enable redis && \
mkdir -p /var/log/php && \
chmod -R 777 /var/log/php
COPY --from=composer /usr/bin/composer /usr/local/bin/composer
USER www-data
EXPOSE 9000
WORKDIR /var/www
CMD composer install