-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathdocker-compose.yml
executable file
·96 lines (86 loc) · 2.15 KB
/
docker-compose.yml
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
services:
redis:
image: redis:7.0.14-alpine
ports:
- 6379:6379
postgres:
image: postgres:alpine
command: postgres -N 500 -B 4096MB
environment:
POSTGRES_PASSWORD: REPLACE_ME
ports:
- 5432:5432
minio:
image: quay.io/minio/minio
ports:
- 9000:9000
- 9001:9001
entrypoint: sh
command: -c 'mkdir -p /data/smr && /usr/bin/docker-entrypoint.sh minio server /data --console-address ":9001"'
environment:
MINIO_ROOT_USER: minio
MINIO_ROOT_PASSWORD: minio123
MINIO_ACCESS_KEY: REPLACE_ME_KEY
MINIO_SECRET_KEY: REPLACE_ME_SECRET
pak_parser:
image: ghcr.io/vilsol/ficsit-pak-parser:v0.0.6
ports:
- 50051:50051
restart: always
loki:
image: grafana/loki:latest
ports:
- "3100:3100"
command: -config.file=/etc/loki/local-config.yaml
grafana:
image: grafana/grafana:latest
environment:
- GF_PATHS_PROVISIONING=/etc/grafana/provisioning
- GF_AUTH_ANONYMOUS_ENABLED=true
- GF_AUTH_ANONYMOUS_ORG_ROLE=Admin
volumes:
- ./grafana_datasources.yaml:/etc/grafana/provisioning/datasources/ds.yaml
ports:
- "3000:3000"
tempo:
image: grafana/tempo:latest
command: [ "-config.file=/etc/tempo.yaml" ]
volumes:
- ./tempo.yaml:/etc/tempo.yaml
ports:
- "4318:4318"
pyroscope:
image: grafana/pyroscope
ports:
- "4040:4040"
temporal:
image: temporalio/auto-setup:1.24.2
depends_on:
- postgres
environment:
- DB=postgres12
- DB_PORT=5432
- POSTGRES_USER=postgres
- POSTGRES_PWD=REPLACE_ME
- POSTGRES_SEEDS=postgres
- DBNAME=temporal
ports:
- 7233:7233
temporal-admin-tools:
image: temporalio/admin-tools:1.24.2-tctl-1.18.1-cli-0.13.0
depends_on:
- temporal
environment:
- TEMPORAL_ADDRESS=temporal:7233
- TEMPORAL_CLI_ADDRESS=temporal:7233
stdin_open: true
tty: true
temporal-ui:
image: temporalio/ui:2.26.2
depends_on:
- temporal
environment:
- TEMPORAL_ADDRESS=temporal:7233
- TEMPORAL_CORS_ORIGINS=http://localhost:3000
ports:
- 8080:8080