summary refs log tree commit diff
path: root/bin/compose
diff options
context:
space:
mode:
Diffstat (limited to 'bin/compose')
-rwxr-xr-xbin/compose14
1 files changed, 0 insertions, 14 deletions
diff --git a/bin/compose b/bin/compose
deleted file mode 100755
index 70c3072..0000000
--- a/bin/compose
+++ /dev/null
@@ -1,14 +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" \
-    --mount type=bind,src=/,dst=/rootfs \
-    --env COMPOSE_DOCKER_CLI_BUILD=1 \
-    --env DOCKER_BUILDKIT=1 \
-    --env HERE="$cwd" \
-    -w "$container_cwd" \
-    docker/compose:latest $@