summary refs log tree commit diff
path: root/bin/hibiki/compose
diff options
context:
space:
mode:
authorRobert Günzler <r@gnzler.io>2020-06-13 14:23:57 +0200
committerRobert Günzler <r@gnzler.io>2020-06-13 14:23:57 +0200
commit85e4f3c44aa01c6fea732965a747f26731adab73 (patch)
tree7a42f106448a6029e9f5816967c7311ce4084b22 /bin/hibiki/compose
parent898cd6f445cc995b8383a73ecd1a27c19560f92d (diff)
move some scripts from bin/hibiki to bin
Diffstat (limited to 'bin/hibiki/compose')
-rwxr-xr-xbin/hibiki/compose10
1 files changed, 0 insertions, 10 deletions
diff --git a/bin/hibiki/compose b/bin/hibiki/compose
deleted file mode 100755
index e4a5dbd..0000000
--- a/bin/hibiki/compose
+++ /dev/null
@@ -1,10 +0,0 @@
-#!/bin/sh
-cwd="$PWD"
-container_cwd="/run/cwd/$(basename "$cwd")"
-exec docker run \
-    --rm -it \
-    --net host \
-    --mount type=bind,src=/var/run/docker.sock,dst=/var/run/docker.sock \
-    --mount type=bind,src="$cwd",dst="$container_cwd" \
-    -w "$container_cwd" \
-    docker/compose:latest $@