You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
66 lines
2.5 KiB
66 lines
2.5 KiB
3 months ago
|
%global debug_package %{nil}
|
||
|
|
||
|
Name: docker-compose2
|
||
|
Version: 2.26.1
|
||
|
Release: 1%{dist}.inferit
|
||
|
Summary: Define and run multi-container applications with Docker
|
||
|
License: Apache-2.0
|
||
|
URL: https://github.com/docker/compose
|
||
|
Source: compose-%{version}.tar.gz
|
||
|
Source1: vendor.tar.gz
|
||
|
BuildRequires: golang%{?_isa} >= 1.21
|
||
|
Requires: docker-ce
|
||
|
|
||
|
|
||
|
%description
|
||
|
Docker Compose is a tool for running multi-container applications on Docker defined using the Compose file format. A Compose file is used to define how the one or more containers that make up your application are configured. Once you have a Compose file, you can create and start your application with a single command: docker compose up.
|
||
|
About update and backward compatibility
|
||
|
|
||
|
Docker Compose V2 is a major version bump release of Docker Compose. It has been completely rewritten from scratch in Golang (V1 was in Python). The installation instructions for Compose V2 differ from V1. V2 is not a standalone binary anymore, and installation scripts will have to be adjusted. Some commands are different.
|
||
|
|
||
|
For a smooth transition from legacy docker-compose 1.xx, please consider installing compose-switch to translate docker-compose ... commands into Compose V2's docker compose .... . Also check V2's --compatibility flag.
|
||
|
|
||
|
%prep
|
||
|
%setup -q -a 1 -n compose-%{version}
|
||
|
|
||
|
%build
|
||
|
export CGO_CFLAGS="-I%{_includedir}/openssl3 ${CFLAGS}"
|
||
|
export CGO_CXXFLAGS="-I%{_includedir}/openssl3 ${CXXFLAGS}"
|
||
|
|
||
|
go build \
|
||
|
-mod=vendor \
|
||
|
-buildmode=pie \
|
||
|
-trimpath \
|
||
|
-ldflags="-s -w -X github.com/docker/compose/v2/internal.Version=%{version}" \
|
||
|
-o bin/docker-compose ./cmd/
|
||
|
|
||
|
%install
|
||
|
install -d -m 0755 "%{buildroot}/usr/lib/docker/cli-plugins/"
|
||
|
install -D -m 0755 bin/docker-compose "%{buildroot}/usr/lib/docker/cli-plugins/docker-compose"
|
||
|
install -d -m 0755 %{buildroot}%{_bindir}
|
||
|
touch %{buildroot}%{_bindir}/docker-compose
|
||
|
|
||
|
%post
|
||
|
%{_sbindir}/update-alternatives --install %{_bindir}/docker-compose docker-compose /usr/lib/docker/cli-plugins/docker-compose 2
|
||
|
|
||
|
%postun
|
||
|
if [ $1 -eq 0 ] ; then
|
||
|
%{_sbindir}/update-alternatives --remove docker-compose /usr/lib/docker/cli-plugins/docker-compose
|
||
|
fi
|
||
|
|
||
|
|
||
|
|
||
|
%files
|
||
|
%doc README.md
|
||
|
%license LICENSE
|
||
|
%dir /usr/lib/docker/
|
||
|
%dir /usr/lib/docker/cli-plugins/
|
||
|
/usr/lib/docker/cli-plugins/docker-compose
|
||
|
%ghost %{_bindir}/docker-compose
|
||
|
|
||
|
%changelog
|
||
|
* Wed Jul 31 2024 Sergey Cherevko <s.cherevko@msvsphere-os.ru> - 2.26.1-1.inferit
|
||
|
- Adapted for MSVphere 9 build
|
||
|
- Rebuilt for MSVSphere 9.4
|
||
|
|