services:
  php:
    container_name: transfer-object-php
    extra_hosts:
      - "host.docker.internal:host-gateway"
    environment:
      XDEBUG_MODE: ${XDEBUG_MODE:-off}
    build:
      context: docker/php
    expose:
      - 9003
    volumes:
      - ./:/home/transfer/transfer-object
      - ./var/xdebug-profile:/tmp/xdebug-profile
    tty: true
 
  |