-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
49 lines (44 loc) · 1.03 KB
/
Copy pathdocker-compose.yaml
File metadata and controls
49 lines (44 loc) · 1.03 KB
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
services:
gateway:
image: threedotslabs/event-driven-gateway-v2:latest
platform: linux/amd64
ports:
- "8888:8080"
environment:
SOLUTION_BASE_URL: "http://host.docker.internal:8080/"
extra_hosts:
- "host.docker.internal:host-gateway"
redis:
image: redis:7.4-alpine
ports:
- "6379:6379"
postgres:
image: postgres:18.1-alpine3.23
environment:
POSTGRES_USER: user
POSTGRES_PASSWORD: password
POSTGRES_DB: db
ports:
- "5432:5432"
prometheus:
image: prom/prometheus:v3.5.1
container_name: prometheus
command:
- '--config.file=/etc/prometheus/prometheus.yml'
ports:
- 9090:9090
restart: unless-stopped
volumes:
- ./docker/prometheus:/etc/prometheus
- prom_data:/prometheus
extra_hosts:
- "host.docker.internal:host-gateway"
jaeger:
image: jaegertracing/jaeger:2.14.1
volumes:
- /etc/localtime:/etc/localtime:ro
ports:
- '16686:16686'
- '4318:4318'
volumes:
prom_data: