-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
64 lines (64 loc) · 1.43 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
version: '2'
services:
haproxy:
build: haproxy/
image: docker.kiwigrid.com/joern.schwarze/alm-haproxy:latest
ports:
- "443:443"
- "80:80"
- "8080:8080"
- "8081:8081"
- "8082:8082"
- "8083:8083"
- "8084:8084"
## If you want to override the haproxy config from outside of the container.
# volumes:
# - ~/projects/docker/ha-proxy/haproxy.cfg://usr/local/etc/haproxy/haproxy.cfg
restart: always
networks:
- alm-net
jenkins:
build: jenkins/
image: docker.kiwigrid.com/joern.schwarze/alm-jenkins:latest
expose:
- "8080"
- "50000"
restart: always
networks:
- alm-net
nexus:
build: nexus/
image: docker.kiwigrid.com/joern.schwarze/alm-nexus:latest
command: run
expose:
- "8081"
restart: always
networks:
- alm-net
bitbucket:
build: bitbucket/
image: docker.kiwigrid.com/joern.schwarze/alm-bitbucket:latest
expose:
- "8080"
restart: always
networks:
- alm-net
sonarqube:
image: "sonarqube:5.4"
environment:
- SONARQUBE_JDBC_URL=jdbc:postgresql://sonar-db:5432/sonar
restart: always
networks:
- alm-net
sonar-db:
image: postgres
environment:
- POSTGRES_USER=sonar
- POSTGRES_PASSWORD=sonar
- PGDATA=/var/lib/postgresql/data/sonar-data
restart: always
networks:
- alm-net
networks:
alm-net:
driver: bridge