Skip to content
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
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# CI relies on this ARG. Don't remove or rename it
ARG COMPOSE_VERSION=v2.40.3
FROM docker/compose-bin:${COMPOSE_VERSION} AS compose

FROM debian:trixie-20251208-slim AS compose-plugin
WORKDIR /home/compose
RUN groupadd --gid 3000 compose \
Expand All @@ -6,7 +10,7 @@ RUN groupadd --gid 3000 compose \
--home /home/compose \
--shell /bin/bash \
compose
COPY --from=docker/compose-bin:v2.40.3 --chown=compose:compose /docker-compose /usr/local/bin/docker-compose
COPY --from=compose --chown=compose:compose /docker-compose /usr/local/bin/docker-compose

ENV COMPOSE_COMPATIBILITY=true
USER compose:compose
Expand Down
2 changes: 1 addition & 1 deletion service.yaml
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version: 1.5.7
version: 1.5.8