From 1a25b78ef29c5e097eadb12a77f8c072a054bccf Mon Sep 17 00:00:00 2001 From: Nicholas Nadeau Date: Fri, 21 Jul 2017 15:46:54 -0400 Subject: [PATCH] homogenized `docker run` command (#8907) There are three locations where the `docker run` command is referenced: - 2x http://docs.grafana.org/installation/docker/ - 1x https://grafana.com/grafana/download?platform=docker The fix syncs the given `docker run` command arguments with the other two. --- docs/sources/installation/docker.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/sources/installation/docker.md b/docs/sources/installation/docker.md index 85349dc58fb..03e6979d72b 100644 --- a/docs/sources/installation/docker.md +++ b/docs/sources/installation/docker.md @@ -14,7 +14,7 @@ weight = 4 Grafana is very easy to install and run using the offical docker container. - $ docker run -i -p 3000:3000 grafana/grafana + $ docker run -d -p 3000:3000 grafana/grafana All Grafana configuration settings can be defined using environment variables, this is especially useful when using the above container.