https://github.com/mendhak/docker-arm32v6-chronograf
Chronograf Docker image for Raspberry Pi Zero (ARM32v6)
https://github.com/mendhak/docker-arm32v6-chronograf
arm32v6 chronograf docker raspberry-pi raspberry-pi-zero
Last synced: about 1 month ago
JSON representation
Chronograf Docker image for Raspberry Pi Zero (ARM32v6)
- Host: GitHub
- URL: https://github.com/mendhak/docker-arm32v6-chronograf
- Owner: mendhak
- Created: 2020-05-08T15:48:55.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-09-04T08:36:41.000Z (over 2 years ago)
- Last Synced: 2025-02-12T06:38:47.046Z (3 months ago)
- Topics: arm32v6, chronograf, docker, raspberry-pi, raspberry-pi-zero
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/mendhak/arm32v6-chronograf
- Size: 3.91 KB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Chronograf Docker iamge for Raspberry Pi Zero. The Raspberry Pi zero is ARM32v6, and there are no official images for that specific architecture.
### Running it
Use docker-compose, together with Influx
```
version: '3.7'
services:
influxdb:
image: mendhak/arm32v6-influxdb
container_name: influxdb
ports:
- 8086:8086
volumes:
- ./influxdbdata:/root/.influxdb/data/
- ./influxdbbackups:/backups/chronograf:
image: mendhak/arm32v6-chronograf
container_name: chronograf
ports:
- 80:8888
command: chronograf --influxdb-url=http://influxdb:8086 --bolt-path /chronografdata/bolt.db
volumes:
- ./chronografdata:/chronografdata/```
Then run it
```
docker-compose up -d
```It takes up to 5 minutes for Chronograf to get started!
Running directly:
docker run -d -p 8888:8888 --rm -it mendhak/arm32v6-chronograf chronograf --influxdb-url=http://zero:8086 --bolt-path /chronografdata/bolt.db
### Building it
DockerHub does not build ARM images, it must be pushed manually.
docker build -t mendhak/arm32v6-chronograf:1.8.4-1 .