mirror of
https://github.com/docker/compose.git
synced 2025-04-08 17:05:13 +02:00
11 lines
195 B
Bash
Executable File
11 lines
195 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
|