12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- %bcond_with build_nosrc
- %if !%{with build_nosrc}
- %global _disable_source_fetch 0
- %endif
- Name: docker-compose
- Summary: Define and run multi-container applications with Docker
- Version: 1.26.2
- Release: 1%{?_dist_release}
- Group: Development/Tools
- License: ASL 2.0
- URL: https://www.docker.com
- Source0: https://github.com/docker/compose/releases/download/%{version}/docker-compose-Linux-x86_64
- Source1: https://raw.githubusercontent.com/docker/compose/%{version}/README.md
- Source2: https://raw.githubusercontent.com/docker/compose/%{version}/LICENSE
- %if %{with build_nosrc}
- NoSource: 0
- NoSource: 1
- NoSource: 2
- %endif
- Vendor: Project Vine
- Distribution: Vine Linux
- Packager: tomop
- Requires: docker-ce-cli
- %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
- # install binary
- install -d %{buildroot}%{_bindir}
- install -p -m 755 %{SOURCE0} %{buildroot}%{_bindir}/docker-compose
- install -p -m 755 %{SOURCE1} ./
- install -p -m 755 %{SOURCE2} ./
- %files
- %defattr(-,root,root,-)
- %license LICENSE
- %doc README.md
- %{_bindir}/docker-compose
- %changelog
- * Sun Jul 26 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.26.2-1
- - new upstream release.
- * Thu Mar 19 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.25.4-1
- - new upstream release.
- * Thu Oct 10 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.24.1-2
- - rebuilt to upload to VineSeed official repository.
- * Tue Aug 27 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.24.1-1
- - initial build for Vine Linux.
|