-
Notifications
You must be signed in to change notification settings - Fork 0
/
docker-compose.yml
39 lines (36 loc) · 1011 Bytes
/
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
version: '3'
services:
riperis:
image: "dockerhama/riperis:latest"
command: >
--output-plugin plugins.timescaledb --output-plugin-config-data '{"reset": "True", "username": "postgres", "password": "11CHANGE00ME11", "host": "timescaledb", "db": "postgres"}'
volumes:
- /etc/grafana:/etc/grafana
depends_on:
- timescaledb
networks:
tik_net:
timescaledb:
image: "timescale/timescaledb:latest-pg11"
ports:
- 5432:5432
volumes:
- /etc/timescaledb/data:/var/lib/postgresql/data
environment:
- "POSTGRES_PASSWORD=11CHANGE00ME11"
networks:
tik_net:
grafana:
image: "dockerhama/grafana:ris"
ports:
- 3000:3000
#environment:
# - "GF_SERVER_ROOT_URL=http://HOST_OR_IP!!!"
# - "GF_SECURITY_ADMIN_PASSWORD=11CHANGE00ME11" # This needs to be changed via the grafana UI after logging into grafana.
networks:
tik_net:
depends_on:
- riperis
networks:
tik_net:
driver: bridge