-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathdocker-compose.basic.service.yml
More file actions
96 lines (90 loc) · 2.67 KB
/
docker-compose.basic.service.yml
File metadata and controls
96 lines (90 loc) · 2.67 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
#version '3.8'
services:
garnet:
image: ghcr.io/microsoft/garnet
container_name: garnet
environment:
- TZ=Asia/Chongqing
ports:
- "6379:6379"
deploy:
resources:
limits:
memory: 2G
extra_hosts:
- "host.docker.internal:host-gateway"
- "gateway.docker.internal:host-gateway"
rabbit:
image: rabbitmq:management
container_name: rabbit
environment:
- TZ=Asia/Chongqing
- RABBITMQ_DEFAULT_USER=admin
- RABBITMQ_DEFAULT_PASS=a123456
ports:
- "5672:5672"
- "15672:15672"
extra_hosts:
- "host.docker.internal:host-gateway"
- "gateway.docker.internal:host-gateway"
aspire_dashboard:
image: mcr.microsoft.com/dotnet/nightly/aspire-dashboard:latest
container_name: aspire_dashboard
environment:
- TZ=Asia/Chongqing
- DASHBOARD__OTLP__AUTHMODE=ApiKey
- DASHBOARD__OTLP__PRIMARYAPIKEY=rVmuMdaqCEruWEbKANjmcIQMnKIhDiLUYSFHaZAVlMktmwDhMUAPIZyfizmoLuSwAePPVhhPigpJUIsAsPZcwfmaMnBxxRuxatrrHNSOKUxUVGFlYQtGtbqtOPasMvPd
- DASHBOARD__TELEMETRYLIMITS__MAXLOGCOUNT=1000
- DASHBOARD__TELEMETRYLIMITS__MAXTRACECOUNT=1000
- DASHBOARD__TELEMETRYLIMITS__MAXMETRICSCOUNT=1000
ports:
- "18888:18888"
extra_hosts:
- "host.docker.internal:host-gateway"
- "gateway.docker.internal:host-gateway"
otel-collector:
image: ghcr.io/open-telemetry/opentelemetry-collector-releases/opentelemetry-collector-contrib:latest
container_name: otel-collector
volumes:
- ./otel-collector-config.yaml:/etc/otelcol-contrib/config.yaml:ro
environment:
- TZ=Asia/Chongqing
ports:
# - "1888:1888" # pprof扩展
# - "13133:13133" # health_check扩展
# - "55679:55679" # zpages扩展
# - "8888:8888" # Collector公开的Prometheus指标
# - "8889:8889" # Prometheus导出器指标
- "4317:4317" # OTLP gRPC接收器
- "4318:4318" # OTLP http接收器
extra_hosts:
- "host.docker.internal:host-gateway"
- "gateway.docker.internal:host-gateway"
# MCP Context7 服务
# context7:
# image: mcp/context7:latest
# container_name: context7
# environment:
# - TZ=Asia/Chongqing
# ports:
# - "8080:8080"
# openobserve:
# image: public.ecr.aws/zinclabs/openobserve:latest
# container_name: openobserve
# volumes:
# - obdata:/data
# environment:
# - TZ=Asia/Chongqing
# - ZO_DATA_DIR=/data
# - ZO_ROOT_USER_PASSWORD=a123456
# ports:
# - "5080:5080"
#
#volumes:
# obdata:
# driver: local
# driver_opts:
# type: none
# o: bind
# device: ./obdata