-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
70 lines (68 loc) · 1.84 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
version: '3'
services:
key_store:
image: fossapps/micro.keystore:1.9.1
ports:
- 15000:15000
environment:
- ASPNETCORE_URLS=http://+:15000
- DatabaseConfig__AutoMigrate=true
- DatabaseConfig__Host=postgres
- DatabaseConfig__Port=5432
- DatabaseConfig__Name=keys
- DatabaseConfig__User=postgres
- DatabaseConfig__Password=postgres
depends_on:
- postgres
auth:
image: fossapps/micro.auth:2.1.2
ports:
- 25000:25000
environment:
- ASPNETCORE_URLS=http://+:25000
- DatabaseConfig__AutoMigrate=true
- DatabaseConfig__Host=postgres
- DatabaseConfig__Port=5432
- DatabaseConfig__Name=auth
- DatabaseConfig__User=postgres
- DatabaseConfig__Password=postgres
- Services__KeyStore__Url=http://key_store:15000
depends_on:
- postgres
postgres:
image: postgres:11-alpine
ports:
- 15433:5432
volumes:
- ./extras/docker_postgres_init.sql:/docker-entrypoint-initdb.d/docker_postgres_init.sql
environment:
- POSTGRES_PASSWORD=postgres
- POSTGRES_USER=postgres
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:
container_name: chronograf
image: chronograf
environment:
- influxdb-url=influxdb:8086
ports:
- 18888:8888
grafana:
container_name: 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