-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
42 lines (42 loc) · 1.06 KB
/
docker-compose.yml
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
36
37
38
39
40
41
42
services:
builder:
build:
context: .
dockerfile: docker-compose/builder.dockerfile
volumes:
- .:/workspace
working_dir: /workspace
eclint:
image: mstruebing/editorconfig-checker
volumes:
- .:/workspace:ro
working_dir: /workspace
jsonschema:
build:
context: .
dockerfile: docker-compose/jsonschema.dockerfile
volumes:
- .:/workspace:ro
working_dir: /workspace
lane:
image: ghcr.io/codereaper/lane
volumes:
- .:/workspace
working_dir: /workspace
makelint:
image: mrtazz/checkmake
volumes:
- ./Makefile:/Makefile:ro
sourcery:
image: ghcr.io/krzysztofzablocki/sourcery
platform: linux/x86_64
command: ["/usr/bin/sourcery", "--sources", "Powercast/", "--templates", "resources/stencils/", "--output", "Powercast/Autogenerated/", "--hideVersionHeader"]
volumes:
- .:/workspace
working_dir: /workspace
swiftlint:
image: ghcr.io/realm/swiftlint
platform: linux/x86_64
volumes:
- .:/workspace:ro
working_dir: /workspace