Compare commits

..

1 Commits

Author SHA1 Message Date
bb2150bd05 chore(deps): update docker.io/library/node docker tag to v24
All checks were successful
Build / build-arm64 (pull_request) Successful in 10m27s
Build / build-amd64 (pull_request) Successful in 9m56s
2025-05-07 01:04:42 +00:00
8 changed files with 66 additions and 13 deletions

View File

@ -17,7 +17,7 @@ jobs:
steps:
- uses: actions/checkout@v4.2.2
- uses: docker/setup-qemu-action@v3.6.0
- uses: docker/setup-buildx-action@v3.11.1
- uses: docker/setup-buildx-action@v3.10.0
- name: Build image
run: |
@ -35,7 +35,7 @@ jobs:
steps:
- uses: actions/checkout@v4.2.2
- uses: docker/setup-qemu-action@v3.6.0
- uses: docker/setup-buildx-action@v3.11.1
- uses: docker/setup-buildx-action@v3.10.0
- name: Build image
run: |

View File

@ -0,0 +1,46 @@
name: Markdown linter
on:
pull_request:
paths: [ "**/*.md" ]
types: [ "opened", "reopened", "synchronize" ]
push:
branches:
- '**'
paths: [ "**/*.md" ]
tags-ignore:
- '**'
workflow_dispatch: {}
jobs:
markdown-link-checker:
container:
image: docker.io/library/node:24.0.0-alpine
runs-on:
- ubuntu-latest
steps:
- name: Install tooling
run: |
apk update
apk add git npm
- uses: actions/checkout@v4.2.2
- name: Verify links in markdown files
run: |
npm install
npm run readme:link
markdown-lint:
container:
image: docker.io/library/node:24.0.0-alpine
runs-on:
- ubuntu-latest
steps:
- name: Install tooling
run: |
apk update
apk add git
- uses: actions/checkout@v4.2.2
- name: Lint markdown files
run: |
npm install
npm run readme:lint

View File

@ -11,7 +11,7 @@ jobs:
steps:
- uses: actions/checkout@v4.2.2
- uses: docker/setup-qemu-action@v3.6.0
- uses: docker/setup-buildx-action@v3.11.1
- uses: docker/setup-buildx-action@v3.10.0
- uses: docker/login-action@v3.4.0
with:
@ -36,7 +36,7 @@ jobs:
steps:
- uses: actions/checkout@v4.2.2
- uses: docker/setup-qemu-action@v3.6.0
- uses: docker/setup-buildx-action@v3.11.1
- uses: docker/setup-buildx-action@v3.10.0
- uses: docker/login-action@v3.4.0
with:

View File

@ -6,7 +6,6 @@ on:
- master
paths:
- README.md
workflow_dispatch: {}
jobs:
update-description-on-hub-docker-io:

View File

@ -56,6 +56,8 @@ MD013:
tables: false
# Include headings
headings: true
# Include headings
headers: true
# Strict length checking
strict: false
# Stern length checking
@ -68,6 +70,11 @@ MD022:
# Blank lines below heading
lines_below: 1
# MD024/no-duplicate-heading/no-duplicate-header - Multiple headings with the same content
MD024:
# Only check sibling headings
allow_different_nesting: true
# MD025/single-title/single-h1 - Multiple top-level headings in the same document
MD025:
# Heading level

View File

@ -1,4 +1,4 @@
FROM docker.io/library/golang:1.24.4-alpine3.21 AS build
FROM docker.io/library/golang:1.24.3-alpine3.21 AS build
ARG DC_VERSION=main
@ -11,7 +11,7 @@ RUN git clone https://github.com/docker/compose.git --branch ${DC_VERSION} docke
cd docker-compose && \
make DESTDIR=/cache
FROM docker.io/library/alpine:3.22
FROM docker.io/library/alpine:3.21
COPY --from=build /cache/docker-compose /usr/bin/docker-compose

View File

@ -1,6 +1,6 @@
# DC_VERSION
# Only required to install a specify version
DC_VERSION?=v2.37.1 # renovate: datasource=github-releases depName=docker/compose
# Only required to install a specifiy version
DC_VERSION?=v2.35.0 # renovate: datasource=github-releases depName=docker/compose
# CONTAINER_RUNTIME
# The CONTAINER_RUNTIME variable will be used to specified the path to a container runtime. This is needed to start and
@ -34,6 +34,7 @@ container-image/build:
PHONY:=container-image/delete
container-image/delete:
- ${CONTAINER_RUNTIME} image rm ${DC_IMAGE_FULLY_QUALIFIED}
- ${CONTAINER_RUNTIME} image rm ${BASE_IMAGE_FULL}
# PUSH CONTAINER IMAGE
# =====================================================================================================================

View File

@ -1,10 +1,10 @@
# docker-compose
# docker-compose-docker
[![Docker Pulls](https://img.shields.io/docker/pulls/volkerraschek/docker-compose)](https://hub.docker.com/r/volkerraschek/docker-compose)
This project contains all sources to build the container image `git.cryptic.systems/volker.raschek/docker-compose`. The
primary goal of this project is to package the binary `docker-compose` as container image. The source code of the binary
can be found in the upstream project of [docker/compose](https://github.com/docker/compose).
This project contains all sources to build the container image `docker.io/volkerraschek/docker-compose`. The primary
goal of this project is to package the binary `docker-compose` as container image. The source code of the binary can be
found in the upstream project of [docker/compose](https://github.com/docker/compose).
The workflow or how `docker-compose` can in general be used is documented [here](https://docs.docker.com/compose/).
Nevertheless, here are some examples of how to use the container image.