-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcompose.yml
42 lines (42 loc) · 935 Bytes
/
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/builder.Dockerfile
volumes:
- .:/workspace
working_dir: /workspace
runner:
build:
context: .
dockerfile: docker/runner.Dockerfile
volumes:
- .:/workspace:ro
working_dir: /workspace
redocly:
image: redocly/cli
volumes:
- .:/spec:ro
dockerlint:
image: hadolint/hadolint
entrypoint: /bin/hadolint --ignore DL3018
volumes:
- .:/workspace:ro
working_dir: /workspace
makelint:
image: mrtazz/checkmake
volumes:
- ./Makefile:/Makefile:ro
markdownlint:
image: ghcr.io/igorshubovych/markdownlint-cli
volumes:
- .:/workspace:ro
working_dir: /workspace
swagger:
image: swaggerapi/swagger-ui
environment:
URL: /openapi.yaml
ports:
- "8081:8080"
volumes:
- ./resources/openapi.yaml:/usr/share/nginx/html/openapi.yaml