diff --git a/docker-compose.yml b/docker-compose.yml index 9632404..871c91b 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -24,7 +24,6 @@ services: depends_on: - pgsql - redis - - valkey pgsql: image: 'postgres:17' @@ -58,19 +57,6 @@ services: retries: 3 timeout: 5s - valkey: - image: 'valkey/valkey:alpine' - ports: - - '${FORWARD_VALKEY_PORT:-6378}:6378' - volumes: - - 'sail-valkey:/data' - networks: - - sail - healthcheck: - test: ["CMD", "valkey-cli", "ping"] - retries: 3 - timeout: 5s - networks: sail: driver: bridge @@ -79,5 +65,3 @@ volumes: driver: local sail-redis: driver: local - sail-valkey: - driver: local diff --git a/docker/8.4/Dockerfile b/docker/8.4/Dockerfile index 55aa26e..9f7c1e9 100644 --- a/docker/8.4/Dockerfile +++ b/docker/8.4/Dockerfile @@ -32,7 +32,7 @@ RUN apt-get update && apt-get upgrade -y \ php8.4-imap php8.4-mbstring \ php8.4-xml php8.4-zip php8.4-bcmath php8.4-soap \ php8.4-intl php8.4-readline \ - php8.4-ldap \ + php8.4-ldap php8.4-tidy \ php8.4-msgpack php8.4-igbinary php8.4-redis php8.4-swoole \ php8.4-memcached php8.4-pcov php8.4-imagick php8.4-xdebug \ && curl -sLS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer \