File: docker-compose.yml

package info (click to toggle)
php-pda-pheanstalk 4.0.5-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 608 kB
  • sloc: php: 2,658; xml: 60; makefile: 15
file content (26 lines) | stat: -rw-r--r-- 551 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
version: "3"
services:
  beanstalk:
    build:
      context: ./dockerfiles
      dockerfile: Dockerfile-beanstalkd
  phpunit:
    build:
      context: ./dockerfiles
      dockerfile: Dockerfile-phpunit
    environment:
      SERVER_HOST: beanstalk
    depends_on:
      - beanstalk
    volumes:
      - ./:/app:ro
      - ./tests/coverage:/app/tests/coverage:rw
    entrypoint: [
      "/sbin/tini",
      "/usr/bin/phpdbg",
      "-qrr",
      "/app/vendor/bin/phpunit",
      "--coverage-html",
      "/app/tests/coverage"
    ]
    #command: /app