-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
58 lines (54 loc) · 1.04 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
services:
init:
image: alpine:3.14
build:
dockerfile: docker/Dockerfile
volumes:
- ./docker/init.sh:/init.sh
- ./secrets:/secrets
- ./tools:/tools
command: /init.sh
secrets:
image: httpd:latest
container_name: apache_secrets
volumes:
- ./secrets:/usr/local/apache2/htdocs
networks:
zmodules:
aliases:
- secrets
jaeger:
image: jaegertracing/all-in-one:1.56
environment:
- COLLECTOR_ZIPKIN_HTTP_PORT=9411
ports:
- 6831:6831/udp
- 6832:6832/udp
- 5778:5778
- 16686:16686
- 4317:4317
- 4318:4318
- 14250:14250
- 14268:14268
- 14269:14269
- 9411:9411
networks:
zmodules:
aliases:
- tracing
graphite:
image: graphiteapp/graphite-statsd
ports:
- 8010:80
- 2003:2003
- 2004:2004
- 2023:2023
- 2024:2024
- 8125:8125/udp
- 8126:8126
networks:
- zmodules
networks:
zmodules:
driver: bridge
name: zmodules