compose/script/build-linux

13 lines
187 B
Plaintext
Raw Normal View History

#!/bin/bash
2014-05-08 14:02:50 +02:00
set -ex
TAG="docker-compose"
docker build -t "$TAG" .
docker run \
--rm \
--user=user \
--volume="$(pwd):/code" \
--entrypoint="script/build-linux-inner" \
"$TAG"