Files
yii2/tests/docker-compose.caching.yml
2025-10-19 18:49:34 +03:00

23 lines
523 B
YAML

services:
php:
build:
context: ..
dockerfile: tests/Dockerfile.caching
ports:
- 80
volumes:
- ../tests/data/config-docker.php:/project/tests/data/config.php
environment:
IS_LOCAL_TESTS: 1
depends_on:
memcached:
condition: service_healthy
memcached:
image: ${DOCKER_MEMCACHED_IMAGE}
healthcheck:
test: ["CMD", "timeout", "5", "bash", "-c", "cat < /dev/null > /dev/tcp/127.0.0.1/11211"]
interval: 10s
timeout: 5s
retries: 5