%define debug_package %{nil} Name: docker-compose Summary: Define and run multi-container applications with Docker Version: 1.25.0 Release: 1%{?dist} License: ASL 2.0 Source0: https://github.com/docker/compose/releases/download/%{version}/docker-compose-Linux-x86_64 URL: https://github.com/docker/compose BuildRoot: %{_tmppath}/%{name}-root %description Compose is a tool for defining and running multi-container Docker applications. With Compose, you use a Compose file to configure your application's services. Then, using a single command, you create and start all the services from your configuration. %prep %build %install rm -rf %{buildroot} # install binary install -p -D -m 0755 %{SOURCE0} %{buildroot}%{_bindir}/%{name} %clean rm -rf %{buildroot} %files %defattr(-,root,root,-) %{_bindir}/* %changelog * Sat Apr 11 2020 Lars Kiesow - 1.25.0-1 - Initial build