-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose-arm.yaml
More file actions
98 lines (93 loc) · 2.39 KB
/
docker-compose-arm.yaml
File metadata and controls
98 lines (93 loc) · 2.39 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
97
98
services:
db:
image: mcr.microsoft.com/mssql/server:2025-latest
ports:
- "1433:1433"
environment:
ACCEPT_EULA: Y
MSSQL_SA_PASSWORD: yourStrong(!)Password
MSSQL_PID: Express
restart: unless-stopped
eventstore:
image: "kurrentplatform/kurrentdb:25.1.0-experimental-arm64-8.0-jammy"
restart: unless-stopped
environment:
- EVENTSTORE_CLUSTER_SIZE=1
- EVENTSTORE_RUN_PROJECTIONS=None
- EVENTSTORE_NODE_PORT=2113
- EVENTSTORE_INSECURE=true
- EVENTSTORE_ENABLE_ATOM_PUB_OVER_HTTP=true
ports:
- "2113:2113"
- "1113:1113"
azurite:
image: mcr.microsoft.com/azure-storage/azurite:3.35.0
restart: unless-stopped
ports:
- 10000:10000
- 10001:10001
- 10002:10002
postgres:
image: postgres:latest
restart: unless-stopped
environment:
POSTGRES_DB: keycloak
POSTGRES_USER: keycloak
POSTGRES_PASSWORD: password
keycloak:
image: quay.io/keycloak/keycloak:latest
restart: unless-stopped
environment:
DB_VENDOR: POSTGRES
DB_ADDR: postgres
DB_DATABASE: keycloak
DB_USER: keycloak
DB_SCHEMA: public
DB_PASSWORD: password
KEYCLOAK_ADMIN: admin
KEYCLOAK_ADMIN_PASSWORD: admin
command:
- start-dev
ports:
- 8080:8080
depends_on:
- postgres
jaeger:
image: jaegertracing/all-in-one:latest
hostname: jaeger
restart: unless-stopped
environment:
- COLLECTOR_ZIPKIN_HOST_PORT=:9411
- COLLECTOR_OTLP_ENABLED=true
ports:
- "16686:16686" # UI
- "4317:4317" # OTLP gRPC
- "4318:4318" # OTLP HTTP
- "14250:14250" # Model
- "14268:14268" # Jaeger HTTP
- "9411:9411" # Zipkin
prometheus:
image: prom/prometheus:latest
hostname: prometheus
restart: unless-stopped
volumes:
- ./dashboards/prometheus/prometheus.yml:/prometheus/prometheus.yml
ports:
- "9090:9090"
command:
- --web.enable-otlp-receiver
- --web.enable-remote-write-receiver
grafana:
image: grafana/grafana:latest
hostname: grafana
restart: unless-stopped
volumes:
- ./dashboards/grafana/grafana.db:/var/lib/grafana/grafana.db
environment:
- GF_SECURITY_ADMIN_USER=admin
- GF_SECURITY_ADMIN_PASSWORD=potato
ports:
- "3000:3000"
depends_on:
- prometheus
- jaeger