Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/frepke/influxdb-grafana
https://github.com/frepke/influxdb-grafana
docker grafana influxdb
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/frepke/influxdb-grafana
- Owner: frepke
- License: mit
- Created: 2020-11-18T16:33:07.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2024-07-08T20:22:35.000Z (4 months ago)
- Last Synced: 2024-07-09T01:39:04.545Z (4 months ago)
- Topics: docker, grafana, influxdb
- Language: Dockerfile
- Homepage:
- Size: 188 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# InfluxDB Grafana
![](https://pi2s.files.wordpress.com/2017/01/influxgrafanalogo.png)
![Influxdb](https://img.shields.io/badge/InfluxDB-1.8.10-orange)
![Grafana](https://img.shields.io/badge/Grafana-11.1.0_Enterprise-orange)
![Chronograf](https://img.shields.io/badge/Chronograf-1.10.0-orange)![code-language](https://img.shields.io/github/languages/top/frepke/influxdb-grafana)
![code-size](https://img.shields.io/github/languages/code-size/frepke/influxdb-grafana)
![last-commit](https://img.shields.io/github/last-commit/frepke/influxdb-grafana/master)
[![ci](https://github.com/frepke/influxdb-grafana/actions/workflows/docker-image.yml/badge.svg)](https://github.com/frepke/influxdb-grafana/actions/workflows/docker-image.yml)![AMD64](https://img.shields.io/badge/Architecture-AMD64-darkred)
![license](https://img.shields.io/github/license/Frepke/influxdb-grafana)
## Usage
Here are some example snippets to help you get started creating and running a container.
**docker**
```markdown
docker run -d \
--name=influx-graf \
-e PUID=1000 \
-e PGID=1000 \
-p 8086:8086 \ #influxdb HTTP API port
-p 3000:3000 \ #grafana webinterface
-p 8083:8083 \ #chronograf webinterface
-v path to data:/var/lib/influxdb \ #makes InfluxDB data and db's persistent
-v path to data:/var/lib/grafana \ #makes Grafana data and db's persistent
--restart unless-stopped \
ghcr.io/frepke/influxdb-grafana
```**docker-compose**
Compatible with docker-compose v3 schemas.
```markdown
---
version: "3"
services:
influx-graf:
image: ghcr.io/frepke/influxdb-grafana
container_name: influx-graf:
environment:
- PUID=1000
- PGID=1000
volumes:
- path to data:/var/lib/influxdb \ #makes InfluxDB data and db's persistent
- path to data:/var/lib/grafana \ #makes Grafana data and db's persistent
ports:
- 8086:8086 \ #influxdb HTTP API port
- 3000:3000 \ #grafana webinterface
restart: unless-stopped
```**Grafana**
Open
```markdown
username: admin
password: admin
```