forked from yetibot/yetibot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdocker-compose.yml
50 lines (44 loc) · 1.02 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
version: '3'
services:
yetibot:
image: yetibot/yetibot
depends_on:
- postgres
volumes:
- ./postgres-data:/var/lib/postgresql/data
environment:
- YB_ADAPTERS_FREENODE_TYPE=irc
- YB_ADAPTERS_FREENODE_HOST=irc.freenode.net
- YB_ADAPTERS_FREENODE_PORT=6667
- YB_ADAPTERS_FREENODE_USERNAME=yetibot_demo
- YB_DB_URL=postgresql://yetibot:yetibot@postgres:5432/yetibot
- YB_URL=http://localhost:3456
ports:
- 3456:3003
postgres:
image: postgres
environment:
- POSTGRES_USER=yetibot
- POSTGRES_PASSWORD=yetibot
ports:
- 5432
grafana:
image: grafana/grafana
ports:
- "3000:3000"
influxdb:
image: influxdb
environment:
- INFLUXDB_DB=events
ports:
- "8083:8083"
- "8086:8086"
- "8090:8090"
riemann:
image: riemannio/riemann
ports:
- "127.0.0.1:5555:5555"
- "127.0.0.1:5555:5555/udp"
- "127.0.0.1:5556:5556"
volumes:
- ./riemann.config:/etc/riemann.config