-
Notifications
You must be signed in to change notification settings - Fork 5
/
docker-compose.yml
81 lines (72 loc) · 1.77 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
72
73
74
75
76
77
78
79
80
81
version: '3'
networks:
prodnetwork:
driver: bridge
services:
jenkins:
image: jenkinsci/blueocean
ports:
- 20000:8080
networks:
- prodnetwork
volumes:
- "jenkinsvol:/var/jenkins_home"
nexus:
image: sonatype/nexus
networks:
- prodnetwork
volumes:
- "nexusvol:/sonatype-work"
ports:
- 20001:8081
sonar:
image: sonarqube
networks:
- prodnetwork
depends_on:
- sonardb
restart: "always"
environment:
- SONARQUBE_JDBC_URL=jdbc:postgresql://sonardb:5432/sonar
sonardb:
image: postgres
networks:
- prodnetwork
environment:
- POSTGRES_USER=sonar
- POSTGRES_PASSWORD=sonar
volumes:
- "sonardbvol:/var/lib/postgresql/data"
seleniumhub:
image: selenium/hub
networks:
- prodnetwork
nodeff:
image: selenium/node-firefox
networks:
- prodnetwork
environment:
- HUB_PORT_4444_TCP_ADDR=seleniumhub
depends_on:
- seleniumhub
nodechrome:
image: selenium/node-chrome
networks:
- prodnetwork
environment:
- HUB_PORT_4444_TCP_ADDR=seleniumhub
depends_on:
- seleniumhub
backup:
image: ubuntu
entrypoint: /bin/sh -c "while true; do sleep 1; done"
networks:
- prodnetwork
volumes:
- "jenkinsvol:/var/jenkins_home"
- "nexusvol:/sonatype-work"
- "sonardbvol:/var/lib/postgresql/data"
volumes:
jenkinsvol: {}
sonardbvol: {}
nexusvol: {}