-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcompose.yml
More file actions
38 lines (37 loc) · 940 Bytes
/
compose.yml
File metadata and controls
38 lines (37 loc) · 940 Bytes
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
name: oura-sync-dev
services:
influxdb:
image: influxdb:2
environment:
INFLUXDB_ORG: v3xlabs
INFLUXDB_ADMIN_TOKEN: v3xlabs
INFLUXDB_DB: oura-sync
DOCKER_INFLUXDB_INIT_MODE: setup
DOCKER_INFLUXDB_INIT_USERNAME: admin
DOCKER_INFLUXDB_INIT_PASSWORD: wachtwoord
DOCKER_INFLUXDB_INIT_ORG: v3xlabs
DOCKER_INFLUXDB_INIT_BUCKET: oura-sync
DOCKER_INFLUXDB_INIT_RETENTION: 1w
DOCKER_INFLUXDB_INIT_ADMIN_TOKEN: v3xlabs
ports:
- "8086:8086"
volumes:
- influxdb-data:/var/lib/influxdb2
healthcheck:
test: ["CMD-SHELL", "influx ping"]
interval: 5s
timeout: 5s
retries: 5
grafana:
image: grafana/grafana:latest
ports:
- "9000:3000"
environment:
- GF_SECURITY_ADMIN_PASSWORD=v3xlabs
volumes:
- grafana-data:/var/lib/grafana
volumes:
influxdb-data:
driver: local
grafana-data:
driver: local