summaryrefslogtreecommitdiff
path: root/bin/docker-omnibus
diff options
context:
space:
mode:
Diffstat (limited to 'bin/docker-omnibus')
-rwxr-xr-xbin/docker-omnibus10
1 files changed, 10 insertions, 0 deletions
diff --git a/bin/docker-omnibus b/bin/docker-omnibus
new file mode 100755
index 0000000..2c3e456
--- /dev/null
+++ b/bin/docker-omnibus
@@ -0,0 +1,10 @@
+#!/bin/sh
+
+set -e
+
+cd "$(dirname "$0")/.."
+
+docker run --rm -it \
+ --network=host \
+ --volume="$PWD":/build \
+ debian:stable sh -c 'cd /build && ./bin/omnibus setup && bash -l'