Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update dependency moby/moby to v28 #10430

Merged
merged 2 commits into from
Feb 20, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 18 additions & 4 deletions tools/docker-manpages/Dockerfile.template
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ SHELL [ "bash", "-clo", "errexit" ]
COPY --link --from=go / /usr/local/
COPY --link --from=make / /usr/local/
COPY --link --from=go-md2man / /usr/local/

WORKDIR /go/src/github.com/docker/cli
ARG name
ARG version
Expand All @@ -22,7 +23,20 @@ EOF
ENV GO111MODULE=auto \
DISABLE_WARN_OUTSIDE_CONTAINER=1 \
GOPATH=/go
RUN make -j$(nproc) manpages
RUN cp -r man/man1 "${prefix}/share/man/" \
&& cp -r man/man5 "${prefix}/share/man/" \
&& cp -r man/man8 "${prefix}/share/man/"
RUN <<EOF
make -j$(nproc) manpages
cp -r man/man1 "${prefix}/share/man/"
cp -r man/man5 "${prefix}/share/man/"
EOF

WORKDIR /go/src/github.com/moby/moby
ARG name
ARG version
RUN <<EOF
check-clone "https://github.com/moby/moby" "v${version}"
git clone -q --config advice.detachedHead=false --depth 1 --branch "v${version}" https://github.com/moby/moby .
EOF
RUN <<EOF
make -C man all GO_MD2MAN=go-md2man
cp -r man/man8 "${prefix}/share/man/"
EOF
2 changes: 1 addition & 1 deletion tools/docker-manpages/manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# yaml-language-server: $schema=https://tools.uniget.dev/schema.yaml
name: docker-manpages
version: "27.5.1"
version: "28.0.0"
binary: "false"
check: "" # No binary
build_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion tools/docker-preview/manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# yaml-language-server: $schema=https://tools.uniget.dev/schema.yaml
$schema: https://tools.uniget.dev/schema.yaml
name: docker-preview
version: "27.5.1"
version: "28.0.0"
binary: ${target}/libexec/docker-preview/bin/docker
check: ${binary} --version | cut -d, -f1 | cut -d' ' -f3
runtime_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion tools/docker-rootless/manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# yaml-language-server: $schema=https://tools.uniget.dev/schema.yaml
$schema: https://tools.uniget.dev/schema.yaml
name: docker-rootless
version: "27.5.1"
version: "28.0.0"
binary: "false"
check: "" # No binary
runtime_dependencies:
Expand Down
2 changes: 1 addition & 1 deletion tools/docker/manifest.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# yaml-language-server: $schema=https://tools.uniget.dev/schema.yaml
$schema: https://tools.uniget.dev/schema.yaml
name: docker
version: "27.5.1"
version: "28.0.0"
binary: dockerd
check: ${binary} --version | cut -d, -f1 | cut -d' ' -f3
runtime_dependencies:
Expand Down
Loading