From 9d10b5ab52a1e18274de9e50d6368be66e83a235 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Torkel=20=C3=96degaard?= Date: Tue, 14 Apr 2015 16:53:54 +0200 Subject: [PATCH] Updated docker docs --- docs/sources/installation/docker.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/sources/installation/docker.md b/docs/sources/installation/docker.md index 0b94544ecf9..5ec9e4f697e 100644 --- a/docs/sources/installation/docker.md +++ b/docs/sources/installation/docker.md @@ -17,11 +17,11 @@ above container. ## Docker volumes & ENV config -The docker container exposes two volumes, the sqlite3 database in the folder `/opt/grafana/data` and -configuration files in the `/opt/grafana/conf` folder. You can map these volumes to host folders when you start the container: +The docker container exposes two volumes, the sqlite3 database in the folder `/var/lib/grafana` and +configuration files is in `/etc/grafana/` folder. You can map these volumes to host folders when you start the container: $ docker run -d -p 3000:3000 \ - -v /var/grafana/data:/opt/grafana/data \ + -v /var/lib/grafana:/var/lib/grafana \ -e "GF_SECURITY_ADMIN_PASSWORD=secret \ grafana/grafana:develop