Grafana in RaspberryPi3 with Docker

Hello,

I want to use a Raspberry Pi 3 with Docker to run Grafana.

I read the oficcial wiki: https://grafana.com/docs/installation/docker/

And execute this:

docker run -d -p 3000:3000 grafana/grafana

It doesn’t start the container, this what the log say:

/run.sh: line 80: /usr/share/grafana/bin/grafana-server: No such file or directory

I am missing something?

Kind regards.

Have you exported all environment variables?

Hello,

After read lots of post, I read that there is a bug with stable version.

I run the master tag and it works! (Compose)

grafana:
#image: grafana/grafana
image: grafana/grafana:master
container_name: grafana
restart: always
ports:
- 3000:3000
links:
- influxdb

Regards.