-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
45 lines (41 loc) · 898 Bytes
/
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
services:
jaeger:
image: jaegertracing/all-in-one
ports:
- "16686:16686"
- "4417:4317"
- "4418:4318"
environment:
- LOG_LEVEL=debug
otel:
image: otel/opentelemetry-collector
ports:
- "4317:4317"
- "4318:4318"
volumes:
- "${PWD}/otel-local-config.yaml:/otel-local-config.yaml"
command: --config otel-local-config.yaml
mariadb:
image: "mariadb"
container_name: "mariadb"
restart: "no"
environment:
MYSQL_ROOT_PASSWORD: "changeme"
MYSQL_DATABASE: "dev_medzoner"
ports:
- "3306:3306"
networks:
- "default"
volumes:
- "mysql:/var/lib/mysql"
mailhog:
image: "mailhog/mailhog"
container_name: "medzoner-mailhog"
hostname: "medzoner-mailhog"
restart: "no"
ports:
- "1025:1025"
- "8025:8025"
volumes:
mysql:
driver: local