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.
docker-compose-plugin/SPECS/docker-compose-plugin.spec

55 lines
2.2 KiB

%global debug_package %{nil}
Name: docker-compose-plugin
Version: 2.26.1
Release: 1%{dist}.inferit
Summary: Docker Compose (V2) plugin for the Docker CLI
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/libexec/docker/cli-plugins/"
install -D -m 0755 bin/docker-compose "%{buildroot}/usr/libexec/docker/cli-plugins/docker-compose"
install -d -m 0755 %{buildroot}%{_bindir}
%files
%doc README.md
%license LICENSE
%dir /usr/libexec/docker/
%dir /usr/libexec/docker/cli-plugins/
/usr/libexec/docker/cli-plugins/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