generated from fossapps/Micro.Starter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
73 lines (70 loc) · 1.87 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
version: '3'
services:
key_store:
image: fossapps/micro.keystore:1.10.0
ports:
- 15000:15000
environment:
- ASPNETCORE_URLS=http://+:15000
volumes:
- ./.docker-configs/keystore/appsettings.json:/app/appsettings.json
postgres:
image: postgres:11-alpine
ports:
- 15433:5432
environment:
- POSTGRES_PASSWORD=secret
- POSTGRES_USER=starter
- POSTGRES_DB=starter_db
influxdb:
image: influxdb
environment:
- INFLUXDB_ADMIN_USER=cyberhck
- INFLUXDB_ADMIN_PASSWORD=secret
- INFLUXDB_DB=monitoring
ports:
- 8086:8086 # http api
- 8083:8083 # admin interface
chronograf:
image: chronograf
environment:
- influxdb-url=influxdb:8086
ports:
- 18888:8888
grafana:
image: grafana/grafana
environment:
- GF_SECURITY_ADMIN_PASSWORD=secret
- GF_INSTALL_PLUGINS=grafana-piechart-panel,raintank-worldping-app,digrich-bubblechart-panel,corpglory-progresslist-panel,flant-statusmap-panel
ports:
- 3000:3000
adminer:
image: adminer
ports:
- 8081:8080
kibana:
image: kibana:7.6.0
environment:
- ELASTICSEARCH_HOSTS=http://es:9200
- ELASTICSEARCH_PASSWORD=mynewpassword
- ELASTICSEARCH_USERNAME=elastic
- xpack.security.enabled=true
depends_on:
- es
ports:
- 5601:5601
es:
image: elasticsearch:7.6.0
environment:
- ELASTIC_PASSWORD=mynewpassword
- node.name=es01
- xpack.security.enabled=true
- discovery.type=single-node
- cluster.name=ohio-cluster
- http.cors.enabled=true
- http.cors.allow-origin=http://localhost:1358,http://127.0.0.1:1358
- http.cors.allow-headers=X-Requested-With,X-Auth-Token,Content-Type,Content-Length,Authorization
- http.cors.allow-credentials=true
ports:
- 9200:9200
- 9300:9300