瀏覽代碼

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.
Nicholas Nadeau 8 年之前
父節點
當前提交
1a25b78ef2
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      docs/sources/installation/docker.md

+ 1 - 1
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.