-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.dev.yaml
52 lines (47 loc) · 1.16 KB
/
docker-compose.dev.yaml
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
version: "3.8"
services:
database:
container_name: ctrlplane-database
image: postgres:16
restart: always
ports:
- "5432:5432"
environment:
POSTGRES_DB: ctrlplane
POSTGRES_USER: ctrlplane
POSTGRES_PASSWORD: ctrlplane
volumes:
- db-data:/var/lib/postgresql/data
redis:
image: redis:latest
container_name: ctrlplane-redis
restart: always
ports:
- "6379:6379"
volumes:
- redis-data:/data
redisinsight:
image: redis/redisinsight:latest
container_name: ctrlplane-redisinsight
links:
- redis
ports:
- "5540:5540"
volumes:
- redisinsight-data:/data
# otel-collector:
# image: otel/opentelemetry-collector-contrib:latest
# container_name: ctrlplane-otel-collector
# command: ["--config=/etc/otel-collector-config.yaml"]
# volumes:
# - ./otel-collector-config.yaml:/etc/otel-collector-config.yaml
# ports:
# - "4317:4317" # OTLP gRPC
# - "4318:4318" # OTLP HTTP
# - "8125:8125" # StatsD
# - "8888:8888" # Telemetry
# - "9109:9109" # Prometheus endpoint
volumes:
db-data:
redis-data:
redisinsight-data: