-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.dev.yml
More file actions
45 lines (40 loc) · 1.12 KB
/
Copy pathdocker-compose.dev.yml
File metadata and controls
45 lines (40 loc) · 1.12 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
# Available ports:
# 8081 - kafka ui
# 8082 - redis insight
# 8083 - mongo express
services:
kafka-ui:
image: provectuslabs/kafka-ui:latest
container_name: kafka-ui
depends_on:
kafka:
condition: service_healthy
ports:
- 8081:8080
environment:
KAFKA_CLUSTERS_0_NAME: cluster
KAFKA_CLUSTERS_0_BOOTSTRAPSERVERS: ${KAFKA_BOOTSTRAP_SERVERS}
redis-ui:
image: redislabs/redisinsight:latest
container_name: redis-ui
ports:
- 8082:5540
volumes:
- ./data/redisinsight:/db
mongo-express:
image: mongo-express:latest
container_name: mongo-express
ports:
- "8083:8081"
environment:
- ME_CONFIG_MONGODB_SERVER=history-db
- ME_CONFIG_MONGODB_PORT=27017
- ME_CONFIG_MONGODB_ENABLE_ADMIN=true
- ME_CONFIG_MONGODB_AUTH_DATABASE=admin
- ME_CONFIG_MONGODB_ADMINUSERNAME=${MONGO_ROOT_USER}
- ME_CONFIG_MONGODB_ADMINPASSWORD=${MONGO_ROOT_PASSWORD}
- ME_CONFIG_BASICAUTH_USERNAME=${MONGOEXPRESS_LOGIN}
- ME_CONFIG_BASICAUTH_PASSWORD=${MONGOEXPRESS_PASSWORD}
depends_on:
- history-db
restart: always