-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
35 lines (34 loc) · 830 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
35 lines (34 loc) · 830 Bytes
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
version: "3"
services:
jaeger:
image: jaegertracing/all-in-one:1
hostname: jaeger
container_name: jaeger
ports:
- "6831:6831/udp" # accepts jaeger.thrift over compact thrift protocol
- "16686:16686" # ui
rabbitmq:
image: rabbitmq:3-management-alpine
hostname: rabbitmq
container_name: rabbitmq
ports:
- "5672:5672" # rabbit itself
- "15672:15672" # management ui
postgres:
image: "postgres:13-alpine"
hostname: "postgres"
container_name: postgres
ports:
- "5432:5432"
environment:
POSTGRES_USER: "iot"
POSTGRES_PASSWORD: "iotgateway"
seq:
image: "datalust/seq:2021"
hostname: seq
container_name: seq
ports:
- "5341:5341" # ingestion API
- "5555:80" # ui
environment:
ACCEPT_EULA: "Y"