mirror of
https://github.com/docker/compose.git
synced 2026-06-23 07:01:49 +00:00
7 lines
131 B
Bash
Executable file
7 lines
131 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
TAG="docker-compose"
|
|
docker build -t "$TAG" .
|
|
docker run --rm --entrypoint="script/build-linux-inner" "$TAG"
|