diff options
| author | Robert Günzler <r@gnzler.io> | 2022-02-09 00:25:02 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2022-02-09 00:25:02 +0100 |
| commit | 85e043c6f962ebb1cf9c3ba3e31753e8c7f227a8 (patch) | |
| tree | ed4e433ae6cf5e23e19e69cfdd9c99d76aa9d8ee /bin/compose | |
| parent | 3d46fc245e22d0c6ba41fa5353808a805397731b (diff) | |
bin: drop some scripts
Diffstat (limited to 'bin/compose')
| -rwxr-xr-x | bin/compose | 14 |
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 $@ |