version: '2'
services:
  test-db:
    platform: linux/x86_64
    image: mysql:5.7
    environment:
      MYSQL_DATABASE: webmention-test
      MYSQL_ROOT_PASSWORD: webmention-test
    healthcheck:
        test: ["CMD", "curl", "-f", "http://localhost:3306"]
        interval: 5s
        timeout: 2s
        retries: 5

  test-php:
    build:
      context: .
      dockerfile: Dockerfile
    depends_on:
      test-db:
        condition: service_healthy
    links:
      - test-db
    volumes:
      - .:/app
    command: ["composer", "run-script", "test"]