summaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
blob: de354b95dcaa1ddaf13413070f53754737aa5caa (plain) (blame)
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
33
34
35
version: "3.2"
services:
  srfi_225_test:
    build: .
    volumes:
      - dependencies-volume:/dependencies
  akku:
    image: "akkuscm/akku"
    depends_on:
      - srfi_225_test
    volumes:
      - dependencies-volume:/dependencies
  kawa:
    image: "schemers/kawa"
    depends_on:
      - srfi_225_test
    volumes:
      - dependencies-volume:/dependencies
      - type: bind
        source: .
        target: /test/srfi-225
    command: "sh /test/srfi-225/docker-kawa.sh"
  chibi:
    image: "schemers/chibi"
    depends_on:
      - srfi_225_test
    volumes:
      - dependencies-volume:/dependencies
      - type: bind
        source: .
        target: /test/srfi-225
    command: "sh /test/srfi-225/docker-chibi.sh"

volumes:
  dependencies-volume: