php-tidy, remove valkey

This commit is contained in:
Dr Masroor Ehsan 2025-01-20 21:44:05 +06:00
parent 08078f1ed0
commit bbef766d50
2 changed files with 1 additions and 17 deletions

View File

@ -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

View File

@ -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 \