[NOT MAINTAINED] Grafana time series analytics software - grafana.com
50K+
Grafana now publishes official multi-arch images that work on ARM too, please use those at https://hub.docker.com/r/grafana/grafana
This image will not be updated with new releases of Grafana.
This project produces Grafana Docker images for ARM hosts.
The available tags are:
armhf: for 32-bits ARM hosts (built on Travis)aarch64: for 64-bits ARM hosts (also built on Travis)The images are all based on Debian with the ARM images having a small QEMU binary to be able to build them on x64 hosts.
The image uses a similar startup command to the offical grafana/grafana image's. To be exact:
ENTRYPOINT [ "/usr/sbin/grafana-server" ]
CMD [ "--homepath=/usr/share/grafana", \
"--config=/etc/grafana/grafana.ini", \
"cfg:default.log.mode=console", \
"cfg:default.paths.data=/var/lib/grafana", \
"cfg:default.paths.logs=/var/log/grafana", \
"cfg:default.paths.plugins=/var/lib/grafana/plugins" ]
To run it, use:
docker run -p 3000:3000 -v /tmp/grafana.ini:/etc/grafana/grafana.ini \
rycus86/grafana:armhf
This will use the Grafana config from /tmp/grafana.ini to start the
server on port 3000 on 32-bits ARM hosts.
To run it with docker-compose:
version: '2'
services:
grafana:
image: rycus86/grafana:aarch64
restart: always
ports:
- "3000:3000"
volumes:
- /tmp/grafana.ini:/etc/grafana/grafana.ini
This will start the 64-bits version with the same configuration as above.
Content type
Image
Digest
Size
80.2 MB
Last updated
over 7 years ago
docker pull rycus86/grafana