mirror of
https://github.com/yiisoft/yii2.git
synced 2025-12-16 03:28:56 +08:00
18 lines
347 B
YAML
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
|