-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yaml
105 lines (97 loc) · 2.46 KB
/
docker-compose.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
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
99
100
101
102
103
104
105
version: '3'
services:
# web:
# image: 'gitlab/gitlab-ee:latest'
# restart: always
# # hostname: 'gitlab.example.com'
# # environment:
# # GITLAB_OMNIBUS_CONFIG: |
# # external_url 'https://gitlab.example.com'
# # Add any other gitlab.rb configuration here, each on its own line
# ports:
# - '80:80'
# - '443:443'
# - '2222:22'
# volumes:
# - '$GITLAB_HOME/config:/etc/gitlab'
# - '$GITLAB_HOME/logs:/var/log/gitlab'
# - '$GITLAB_HOME/data:/var/opt/gitlab'
# shm_size: '256m'
# networks:
# - ch_ntw
ch_server:
image: clickhouse/clickhouse-server:22.6
ports:
- '8123:8123'
- '9000:9000'
volumes:
- ./db:/var/lib/clickhouse
networks:
- ch_ntw
# ch_client:
# image: yandex/clickhouse-client
# entrypoint:
# - /bin/sleep
# command:
# - infinity
# networks:
# - ch_ntw
nats:
image: nats:latest
command:
- '--jetstream'
- '--http_port'
- '8222'
environment:
NATS_HTTP_PORT_NUMBER: 8222
expose:
- '4222'
ports:
- '8222:8222'
networks:
- ch_ntw
grafana:
image: grafana/grafana
ports:
- 3000:3000
networks:
- ch_ntw
agent:
entrypoint: '/git-bridge'
build: ./agent/
restart: always
environment:
NATS_TOKEN: 'UfmrJOYwYCCsgQvxvcfJ3BdI6c8WBbnD'
NATS_ADDRESS: 'nats://nats:4222'
PORT: '8090'
STREAM_NAME: 'GITMETRICS'
ports:
- '8090:8090'
# depends_on:
# web:
# condition: service_healthy
networks:
- ch_ntw
client:
entrypoint: '/client'
build: ./client/
restart: always
environment:
NATS_TOKEN: 'UfmrJOYwYCCsgQvxvcfJ3BdI6c8WBbnD'
NATS_ADDRESS: 'nats://nats:4222'
DB_ADDRESS: 'ch_server:9000'
PORT: '8091'
STREAM_NAME: 'GITMETRICS'
ports:
- '8091:8091'
# depends_on:
# web:
# condition: service_healthy
networks:
- ch_ntw
networks:
ch_ntw:
driver: bridge
# ipam:
# config:
# - subnet: 10.222.1.0/24