Sign inSign up

rycus86/grafana

By rycus86

Updated over 7 years ago

[NOT MAINTAINED] Grafana time series analytics software - grafana.com

Image
2

50K+

rycus86/grafana repository overview

Unmaintained

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.

Grafana on ARM

This project produces Grafana Docker images for ARM hosts.

The available tags are:

  • armhf: for 32-bits ARM hosts (built on Travis)
    Layers
  • aarch64: for 64-bits ARM hosts (also built on Travis)
    Layers

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.

Usage

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.

Tag summary

Content type

Image

Digest

Size

80.2 MB

Last updated

over 7 years ago

docker pull rycus86/grafana