-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjenkins.yaml
101 lines (93 loc) · 1.94 KB
/
jenkins.yaml
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
version: "3.3"
services:
revproxy:
image: nginx-subdomain:1.0
ports:
- 80:80
networks:
- pipeline
depends_on:
- jenkins
- sonarqube
deploy:
placement:
constraints:
- node.role==manager
resources:
limits:
cpus: '1'
memory: 2G
reservations:
cpus: '0.5'
memory: 512m
jenkins:
image: yvalencia/jenkins:1.0
networks:
- pipeline
volumes:
- jenkins_data:/var/jenkins_home
- /var/run/docker.sock:/var/run/docker.sock
deploy:
placement:
constraints:
- node.role==manager
resources:
limits:
cpus: '1'
memory: 2G
reservations:
cpus: '0.5'
memory: 512m
sonarqube:
image: sonarqube:lts
environment:
SONAR_JDBC_URL: jdbc:postgresql://db:5432/sonar
SONAR_JDBC_USERNAME: sonar
SONAR_JDBC_PASSWORD: sonar
volumes:
- sonarqube_data:/opt/sonarqube/data
- sonarqube_extensions:/opt/sonarqube/extensions
- sonarqube_logs:/opt/sonarqube/logs
networks:
- pipeline
deploy:
placement:
constraints:
- node.role==manager
resources:
limits:
cpus: '1'
memory: 2G
reservations:
cpus: '0.5'
memory: 512m
db:
image: postgres:12
environment:
POSTGRES_USER: sonar
POSTGRES_PASSWORD: sonar
volumes:
- postgresql:/var/lib/postgresql
- postgresql_data:/var/lib/postgresql/data
networks:
- pipeline
deploy:
placement:
constraints:
- node.role==manager
resources:
limits:
cpus: '1'
memory: 2G
reservations:
cpus: '0.5'
memory: 512m
networks:
pipeline:
volumes:
jenkins_data:
sonarqube_data:
sonarqube_extensions:
sonarqube_logs:
postgresql:
postgresql_data: