diff options
| author | 2021-08-16 23:41:17 +0300 | |
|---|---|---|
| committer | 2021-08-16 23:41:17 +0300 | |
| commit | e2ffca246692c28222394ce4a927cf61a7f16bc6 (patch) | |
| tree | c21b90d96db28bb944d9e5a6f64ca8e5936e6045 /docker-compose.yml | |
| parent | typos (diff) | |
work
Diffstat (limited to 'docker-compose.yml')
| -rw-r--r-- | docker-compose.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/docker-compose.yml b/docker-compose.yml new file mode 100644 index 0000000..2571288 --- /dev/null +++ b/docker-compose.yml @@ -0,0 +1,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: |
