mirror of
https://github.com/yiisoft/yii2.git
synced 2025-12-15 19:01:19 +08:00
23 lines
523 B
YAML
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
|