File: docker-compose.yml

package info (click to toggle)
php-sparkline 2.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 124 kB
  • sloc: php: 674; makefile: 3
file content (32 lines) | stat: -rw-r--r-- 485 bytes parent folder | download
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
27
28
29
30
31
32
version: "3"

services:
  composer:
    build:
      dockerfile: Dockerfile
      context: .
    working_dir: /app
    entrypoint:
      - composer
    volumes:
      - .:/app

  php:
    build:
      dockerfile: Dockerfile
      context: .
    working_dir: /app
    entrypoint:
      - php
    volumes:
      - .:/app

  phpunit:
    build:
      dockerfile: Dockerfile
      context: .
    working_dir: /app
    entrypoint:
      - /app/vendor/bin/phpunit
    volumes:
      - .:/app