File tree Expand file tree Collapse file tree 2 files changed +9
-14
lines changed
Expand file tree Collapse file tree 2 files changed +9
-14
lines changed Original file line number Diff line number Diff line change 1- ARG COMPOSE_VERSION=v2.37.0
2- FROM docker/compose-bin:${COMPOSE_VERSION} AS compose
3-
4- FROM debian:bookworm-20250908-slim AS compose-plugin
1+ FROM debian:trixie-20251117-slim AS compose-plugin
52WORKDIR /home/compose
3+ RUN addgroup --gid 3000 compose \
4+ && adduser --uid 3000 --gecos "" --disabled-password \
5+ --ingroup compose \
6+ --home /home/compose \
7+ --shell /bin/bash compose
8+ COPY --from=docker/compose-bin:v2.40.3 --chown=compose:compose /docker-compose /usr/local/bin/docker-compose
9+
610ENV COMPOSE_COMPATIBILITY=true
7- # add user
8- RUN addgroup --gid 3000 compose && \
9- adduser --uid 3000 --gecos "" --disabled-password \
10- --ingroup compose \
11- --home /home/compose \
12- --shell /bin/bash compose
1311USER compose:compose
14-
15- COPY --from=compose --chown=compose:compose /docker-compose /usr/local/bin/docker-compose
16-
1712ENTRYPOINT [ "docker-compose" ]
Original file line number Diff line number Diff line change 1- version : 1.5.6
1+ version : 1.5.7
You can’t perform that action at this time.
0 commit comments