mirror of https://github.com/docker/compose.git
14 lines
242 B
Plaintext
14 lines
242 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
set -ex
|
||
|
|
||
|
./script/clean
|
||
|
|
||
|
TAG="docker-compose"
|
||
|
docker build -t "$TAG" . | tail -n 200
|
||
|
docker run \
|
||
|
--rm --entrypoint="script/build/linux-entrypoint" \
|
||
|
-v $(pwd)/dist:/code/dist \
|
||
|
-v $(pwd)/.git:/code/.git \
|
||
|
"$TAG"
|