mirror of
https://github.com/docker/compose.git
synced 2026-06-23 07:01:49 +00:00
10 lines
197 B
Bash
Executable file
10 lines
197 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
mkdir -p `pwd`/dist
|
|
chmod 777 `pwd`/dist
|
|
|
|
pyinstaller -F bin/docker-compose
|
|
mv dist/docker-compose dist/docker-compose-Linux-x86_64
|
|
dist/docker-compose-Linux-x86_64 --version
|