An open API service indexing awesome lists of open source software.

https://github.com/luzifer-docker/grafana

Grafana installation in a container ready to deploy
https://github.com/luzifer-docker/grafana

debian docker grafana

Last synced: 2 months ago
JSON representation

Grafana installation in a container ready to deploy

Awesome Lists containing this project

README

          

# luzifer-docker / grafana

## Running your Grafana image

Start your image binding the external port `3000`.

```
docker run -i -p 3000:3000 ghcr.io/luzifer-docker/grafana
```

Try it out, default admin user is admin/admin.

## Configuring your Grafana container

All options defined in conf/grafana.ini can be overriden using environment variables, for example:

```
docker run -i -p 3000:3000 \
-e "GF_SERVER_ROOT_URL=http://grafana.server.name" \
-e "GF_SECURITY_ADMIN_PASSWORD=secret \
ghcr.io/luzifer-docker/grafana
```