summaryrefslogtreecommitdiffstats
path: root/test/start_test.sh
diff options
context:
space:
mode:
authorSoulou <leo.unbek@gmail.com>2016-11-02 00:11:51 +0100
committerGitHub <noreply@github.com>2016-11-02 00:11:51 +0100
commit73d0b3879b90fb48a9177a03382cfd132ab5c431 (patch)
treee786e6d4a761f598eec5e4753c70fdb258f04b10 /test/start_test.sh
parent6580e4949d3f3cf3f1972df9a7ce284dddae96b4 (diff)
parentaa2d22c92a523efd26cd575320ab90df5c94e744 (diff)
downloadmunin-73d0b3879b90fb48a9177a03382cfd132ab5c431.tar.gz
munin-73d0b3879b90fb48a9177a03382cfd132ab5c431.tar.bz2
munin-73d0b3879b90fb48a9177a03382cfd132ab5c431.tar.xz
munin-73d0b3879b90fb48a9177a03382cfd132ab5c431.zip
Merge pull request #7 from Scalingo/support_cgi
Support CGI graphs
Diffstat (limited to 'test/start_test.sh')
-rwxr-xr-xtest/start_test.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/start_test.sh b/test/start_test.sh
new file mode 100755
index 0000000..7f81e69
--- /dev/null
+++ b/test/start_test.sh
@@ -0,0 +1,19 @@
+#!/bin/bash
+
+if [ -z "$1" ] ; then
+ echo "usage: $0 <id of docker image>"
+ exit 1
+fi
+
+basedir="$( cd -P "$( dirname "$0" )" && pwd )/munin"
+
+docker run -it \
+ -p 8080:8080 \
+ -v $basedir/log:/var/log/munin \
+ -v $basedir/lib:/var/lib/munin \
+ -v $basedir/run:/run/munin \
+ -v $basedir/cache:/var/cache/munin \
+ -e MUNIN_USER=user \
+ -e MUNIN_PASSWORD=secret \
+ -e NODES="172.17.0.1:$(hostname)" \
+ $1