forked from EarthScope/es-simple-cluster
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
213 lines (196 loc) · 5.85 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
---
version: '3'
services:
# For better performance (and fewer headaches) comment out any services you aren't using.
# For services that do run, also consider commenting out
# - persistent storage
# - external port mapping
# as these are frequent sources of contention and random errors.
# REQUIRED for kafka
# Apache zookeeper does what now?
zookeeper:
image: confluentinc/cp-zookeeper:6.1.1
hostname: zookeeper
ports:
- "2181:2181"
environment:
ZOOKEEPER_CLIENT_PORT: 2181
ZOOKEEPER_TICK_TIME: 2000
# REQUIRED for kafka
# The kafka broker
broker:
image: confluentinc/cp-server:6.1.1
hostname: broker
depends_on:
- zookeeper
ports:
- "9092:9092"
- "9101:9101"
environment:
KAFKA_BROKER_ID: 1
KAFKA_ZOOKEEPER_CONNECT: 'zookeeper:2181'
KAFKA_LISTENER_SECURITY_PROTOCOL_MAP: PLAINTEXT:PLAINTEXT,PLAINTEXT_HOST:PLAINTEXT
KAFKA_ADVERTISED_LISTENERS: PLAINTEXT://broker:29092,PLAINTEXT_HOST://broker:9092
KAFKA_METRIC_REPORTERS: io.confluent.metrics.reporter.ConfluentMetricsReporter
KAFKA_OFFSETS_TOPIC_REPLICATION_FACTOR: 1
KAFKA_GROUP_INITIAL_REBALANCE_DELAY_MS: 0
KAFKA_CONFLUENT_LICENSE_TOPIC_REPLICATION_FACTOR: 1
KAFKA_CONFLUENT_BALANCER_TOPIC_REPLICATION_FACTOR: 1
KAFKA_TRANSACTION_STATE_LOG_MIN_ISR: 1
KAFKA_TRANSACTION_STATE_LOG_REPLICATION_FACTOR: 1
KAFKA_JMX_PORT: 9101
KAFKA_JMX_HOSTNAME: localhost
KAFKA_CONFLUENT_SCHEMA_REGISTRY_URL: http://schema-registry:8081
CONFLUENT_METRICS_REPORTER_BOOTSTRAP_SERVERS: broker:29092
CONFLUENT_METRICS_REPORTER_TOPIC_REPLICAS: 1
CONFLUENT_METRICS_ENABLE: 'true'
CONFLUENT_SUPPORT_CUSTOMER_ID: 'anonymous'
# If disconnected from a volume, rebuilding will reset
# volumes:
# - kafka-data:/var/lib/kafka/data
# REQUIRED for kafka
# Registry for kafka message schemas
schema-registry:
image: confluentinc/cp-schema-registry:6.1.1
hostname: schema-registry
depends_on:
- broker
ports:
- "8081:8081"
environment:
SCHEMA_REGISTRY_HOST_NAME: schema-registry
SCHEMA_REGISTRY_KAFKASTORE_BOOTSTRAP_SERVERS: 'broker:29092'
SCHEMA_REGISTRY_LISTENERS: http://0.0.0.0:8081
# # RESTful proxy for kafka
# rest-proxy:
# image: confluentinc/cp-kafka-rest:6.1.1
# hostname: rest-proxy
# depends_on:
# - broker
# - schema-registry
# ports:
# - 8082:8082
# environment:
# KAFKA_REST_HOST_NAME: rest-proxy
# KAFKA_REST_BOOTSTRAP_SERVERS: 'broker:29092'
# KAFKA_REST_LISTENERS: "http://0.0.0.0:8082"
# KAFKA_REST_SCHEMA_REGISTRY_URL: 'http://schema-registry:8081'
# Web front-end
web:
image: nginx
volumes:
# Define a base nginx path in our subdirectory
- ./nginx:/etc/nginx
# Map the static subpath to a volume
- web-static:/etc/nginx/html/static
ports:
# The main web interface
- 8080:80
# HTTPS
- 8443:443
# Super simple nginx server
# - 8181:81
depends_on:
- django-web
# Vouch-proxy (CILogon integration with nginx)
vouch-proxy:
image: voucher/vouch-proxy:latest
volumes:
- ./vouch-proxy:/config
# ports:
# - 9090:9090
# Postgres database
postgres:
image: postgres
volumes:
- postgres-data:/var/lib/postgresql/data
env_file:
# see https://docs.docker.com/compose/environment-variables/#the-env_file-configuration-option
- ./docker.env
# ports:
# - 8432:5432
# Redis key/value store
redis:
image: redis
# ports:
# - 6379:6379
# TimescaleDB
timescaledb:
image: timescale/timescaledb:latest-pg12
environment:
POSTGRES_PASSWORD: "password"
# ports:
# - "9432:5432"
# Prometheus metrics
prometheus:
image: prom/prometheus
volumes:
# Persistent data volume
- prometheus:/prometheus
# Local config
- ./prometheus/config:/etc/prometheus
# ports:
# - "9091:9090"
# Grafana front-end
grafana:
image: grafana/grafana:latest
volumes:
# Persistent data volume
- grafana:/var/lib/grafana
# Local config
- ./grafana/config:/etc/grafana
ports:
- "3001:3000"
environment:
GF_INSTALL_PLUGINS: "grafana-worldmap-panel"
####
# Example data service containers
####
# Example web interfaces (collection and distribution)
django-web:
# GitHub repository image
image: ghcr.io/earthscope/es-example-django:main
# Or link/submodule to a subdirectory
# build: ../es-example-django
command: gunicorn -c ./gunicorn.conf.py
volumes:
# AVRO schemas
- ./avro_schemas:/avro_schemas:ro
# Static files area
- web-static:/web-static
# For local development, can link to sources
# - ../es-example-django:/es-example-django
env_file:
# see https://docs.docker.com/compose/environment-variables/#the-env_file-configuration-option
- ./docker.env
# Local env on top of env_file
environment:
- DJANGO_PROMETHEUS=1
ports:
- 8100:8000
- 9100:9000
# Example data archiver
django-archiver:
# GitHub repository image
image: ghcr.io/earthscope/es-example-django:main
# Or link/submodule to a subdirectory
# build: ../es-example-django
command: python manage.py run_kafka_consumer
depends_on:
- broker
- schema-registry
volumes:
# AVRO schemas
- ./avro_schemas:/avro_schemas:ro
# For local development, can link to sources
# - ../es-example-django:/es-example-django
env_file:
# see https://docs.docker.com/compose/environment-variables/#the-env_file-configuration-option
- ./docker.env
# Volumes are local by default, but could be backed by test/prod datasources
volumes:
kafka-data:
postgres-data:
web-static:
prometheus:
grafana: