summaryrefslogtreecommitdiffstats
path: root/docker-compose.yml
blob: 25712882ff8e8fe561c90ce4f42997187532b5ed (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
version: "3"
services:
  srfi_225_test:
    build: .
    volumes:
      - test-volume:/test
  gauche:
    image: "schemers/gauche"
    depends_on:
      - srfi_225_test
    volumes:
      - test-volume:/test
    command: ["gosh", "-I", "/test/srfi-225", "/test/srfi-225/srfi-225-test.scm"]

volumes:
  test-volume: