docker-compose-vl.spec 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. %bcond_with build_nosrc
  2. %if !%{with build_nosrc}
  3. %global _disable_source_fetch 0
  4. %endif
  5. Name: docker-compose
  6. Summary: Define and run multi-container applications with Docker
  7. Version: 1.25.4
  8. Release: 1%{?_dist_release}
  9. Group: Development/Tools
  10. License: ASL 2.0
  11. URL: https://www.docker.com
  12. Source0: https://github.com/docker/compose/releases/download/%{version}/docker-compose-Linux-x86_64
  13. Source1: https://raw.githubusercontent.com/docker/compose/%{version}/README.md
  14. Source2: https://raw.githubusercontent.com/docker/compose/%{version}/LICENSE
  15. %if %{with build_nosrc}
  16. NoSource: 0
  17. NoSource: 1
  18. NoSource: 2
  19. %endif
  20. Vendor: Project Vine
  21. Distribution: Vine Linux
  22. Packager: tomop
  23. Requires: docker-ce-cli
  24. %description
  25. 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.
  26. %prep
  27. %build
  28. %install
  29. # install binary
  30. install -d %{buildroot}%{_bindir}
  31. install -p -m 755 %{SOURCE0} %{buildroot}%{_bindir}/docker-compose
  32. install -p -m 755 %{SOURCE1} ./
  33. install -p -m 755 %{SOURCE2} ./
  34. %files
  35. %defattr(-,root,root,-)
  36. %license LICENSE
  37. %doc README.md
  38. %{_bindir}/docker-compose
  39. %changelog
  40. * Thu Mar 19 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.25.4-1
  41. - new upstream release.
  42. * Thu Oct 10 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.24.1-2
  43. - rebuilt to upload to VineSeed official repository.
  44. * Tue Aug 27 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.24.1-1
  45. - initial build for Vine Linux.