import docker-compose-plugin-2.26.1-1.el9

i9 changed/i9/docker-compose-plugin-2.26.1-1.el9.inferit
Sergey Cherevko 2 months ago
commit 1b58b559da
Signed by: scherevko
GPG Key ID: D87CBBC16D2E4A72

@ -0,0 +1,2 @@
19a5f8ebc14bcbb8c0c752ac3aafec16a4793c8e SOURCES/compose-2.26.1.tar.gz
051b54dc77605dea1b0b25628ea56e44c573d0fa SOURCES/vendor.tar.gz

2
.gitignore vendored

@ -0,0 +1,2 @@
SOURCES/compose-2.26.1.tar.gz
SOURCES/vendor.tar.gz

@ -0,0 +1,54 @@
%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
Loading…
Cancel
Save