-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
31 lines (31 loc) · 903 Bytes
/
docker-compose.yml
File metadata and controls
31 lines (31 loc) · 903 Bytes
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
version: "2"
services:
test:
build:
args:
- SKIP_TEST
context: .
dockerfile: git-custom-commands-test/Dockerfile
volumes:
- ./git-custom-commands-test:/test
- ./bin/git-review:/usr/bin/git-review
- ./bin/git-review.py:/usr/bin/git-review.py
- ./bin/git-submit:/usr/bin/git-submit
- ./bin/git-submit.py:/usr/bin/git-submit.py
test-hooks:
build:
args:
- SKIP_TEST
context: .
dockerfile: git-hooks-test/Dockerfile
volumes:
- ./git-hooks-test:/test
- ./hooks:/usr/share/hooks
test-reviewable:
build:
context: reviewable
dockerfile: Dockerfile
volumes:
- ./reviewable/.eslintrc.json:/usr/src/app/.eslintrc.json:ro
- ./reviewable/lgtm_plus_resolved_discussions.js:/usr/src/app/lgtm_plus_resolved_discussions.js:ro
- ./reviewable/test:/usr/src/app/test:ro