Install plugins using docker run

Hi,

When i install many plugins using following command, only the first two plugins can be installed by it.

docker run -d -e “GF_INSTALL_PLUGINS=briangann-datatable-panel,btplc-status-dot-panel,digrich-bubblechart-panel,grafana-clock-panel,grafana-simple-json-datasource,grafana-worldmap-panel,michaeldmoore-annunciator-panel,mtanda-histogram-panel,natel-discrete-panel,neocat-cal-heatmap-panel,novalabs-annotations-panel,petrslavotinek-carpetplot-panel,snuids-radar-panel,vonage-status-panel” -p 3000:3000 mshen3/grafana:0.6.6

But when I run the following command, all of the listed plugins can be installed.

docker run -e “GF_INSTALL_PLUGINS=briangann-datatable-panel,btplc-status-dot-panel,digrich-bubblechart-panel,grafana-clock-panel,grafana-simple-json-datasource,grafana-worldmap-panel,michaeldmoore-annunciator-panel,mtanda-histogram-panel,natel-discrete-panel,neocat-cal-heatmap-panel,novalabs-annotations-panel,petrslavotinek-carpetplot-panel,snuids-radar-panel,vonage-status-panel” -p 3000:3000 mshen3/grafana:0.6.6

The only difference is that the first one we run it as daemon and second one we run it as ordinary front-end program.
So is it actually a bug?