This repository has been archived by the owner on Dec 17, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdocker-compose.yml
71 lines (71 loc) · 1.85 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
version: '3'
services:
unittest:
image: fniessink/next-action-dev:latest
working_dir: ${PWD}
volumes:
- ${PWD}:${PWD}
command: ci/unittest.sh
behave:
image: fniessink/next-action-dev:latest
working_dir: ${PWD}
volumes:
- ${PWD}:${PWD}
command: ci/behave.sh
security:
image: fniessink/next-action-dev:latest
working_dir: ${PWD}
volumes:
- ${PWD}:${PWD}
command: ci/security.sh
owasp-dependency-check:
image: owasp/dependency-check:latest
volumes:
- ${PWD}:/src
- ${PWD}/.owasp-dependency-check-data:/usr/share/dependency-check/data
- ${PWD}/build/owasp-dependency-check-report:/report
command: /usr/share/dependency-check/bin/dependency-check.sh --scan /src --format "ALL" --project "OWASP Dependency Check" --out /src/build/owasp-dependency-check-report/
quality:
image: fniessink/next-action-dev:latest
working_dir: ${PWD}
volumes:
- ${PWD}:${PWD}
command: ci/quality.sh
docs:
image: fniessink/next-action-dev:latest
working_dir: ${PWD}
volumes:
- ${PWD}:${PWD}
- /var/run/docker.sock:/var/run/docker.sock
command: ci/docs.sh
sonarcloud-scanner:
image: fniessink/next-action-dev:latest
working_dir: ${PWD}
environment:
- SONAR_TOKEN
volumes:
- ${PWD}:${PWD}
command: ci/sonarcloud-scanner.sh
sonarqube-scanner:
image: fniessink/next-action-dev:latest
working_dir: ${PWD}
volumes:
- ${PWD}:${PWD}
environment:
- SONARQUBE_URL=http://sonarqube:9000/
command: ci/sonarqube-scanner.sh
sonarqube:
image: sonarqube:latest
container_name: sonarqube
ports:
- "9000:9000"
- "9002:9002"
release:
image: fniessink/next-action-dev:latest
working_dir: ${PWD}
volumes:
- ${PWD}:${PWD}
command: ci/release.sh
environment:
- TWINE_USERNAME
- TWINE_PASSWORD