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

18 lines
347 B
YAML

services:
php:
depends_on:
postgres:
condition: service_healthy
postgres:
image: ${DOCKER_POSTGRES_IMAGE}
environment:
POSTGRES_DB: yiitest
POSTGRES_USER: postgres
POSTGRES_PASSWORD: postgres
healthcheck:
test: ["CMD", "pg_isready"]
interval: 10s
timeout: 3s
retries: 5