Compare commits

...

2 Commits

Author SHA1 Message Date
08e1f7ffc1 chore(deps): update dependency docker/compose to v2.40.2
Some checks failed
Markdown linter / markdown-link-checker (push) Failing after 7s
Markdown linter / markdown-lint (push) Failing after 6s
Build / build-amd64 (pull_request) Successful in 2m22s
Markdown linter / markdown-link-checker (pull_request) Failing after 6s
Markdown linter / markdown-lint (pull_request) Failing after 6s
Build / build-arm64 (pull_request) Has been cancelled
2025-10-22 22:09:42 +02:00
2e01ff466d fix(ci): add markdown linter and adapt renovate packageRule
Some checks failed
Build / build-amd64 (push) Successful in 2m25s
Markdown linter / markdown-link-checker (push) Failing after 6s
Markdown linter / markdown-lint (push) Failing after 6s
Update Docker Hub Description / update-description-on-hub-docker-io (push) Successful in 7s
Build / build-arm64 (push) Has been cancelled
2025-10-22 22:09:11 +02:00
4 changed files with 51 additions and 4 deletions

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.10.0-alpine
runs-on:
- ubuntu-latest
steps:
- name: Install tooling
run: |
apk update
apk add git npm
- uses: actions/checkout@v5.0.0
- name: Verify links in markdown files
run: |
npm install
npm run readme:link
markdown-lint:
container:
image: docker.io/library/node:24.10.0-alpine
runs-on:
- ubuntu-latest
steps:
- name: Install tooling
run: |
apk update
apk add git
- uses: actions/checkout@v5.0.0
- name: Lint markdown files
run: |
npm install
npm run readme:lint

View File

@@ -1,6 +1,6 @@
# DC_VERSION # DC_VERSION
# Only required to install a specify version # Only required to install a specify version
DC_VERSION?=v2.40.0 # renovate: datasource=github-releases depName=docker/compose DC_VERSION?=v2.40.2 # renovate: datasource=github-releases depName=docker/compose
# CONTAINER_RUNTIME # CONTAINER_RUNTIME
# The CONTAINER_RUNTIME variable will be used to specified the path to a container runtime. This is needed to start and # The CONTAINER_RUNTIME variable will be used to specified the path to a container runtime. This is needed to start and

View File

@@ -6,8 +6,9 @@ This project contains all sources to build the container image `git.cryptic.syst
primary goal of this project is to package the binary `docker-compose` as container image. The source code of the binary 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). 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/). The workflow or how `docker-compose` can in general be used is documented at
Nevertheless, here are some examples of how to use the container image. [docs.docker.com](https://docs.docker.com/compose/). Nevertheless, here are some examples of how to use the container
image.
```bash ```bash
IMAGE_VERSION=2.34.0 IMAGE_VERSION=2.34.0

View File

@@ -4,7 +4,7 @@
{ {
"fileMatch": ["^README\\.md$"], "fileMatch": ["^README\\.md$"],
"matchStrings": [ "matchStrings": [
"VERSION=(?<currentValue>.*)" "IMAGE_VERSION=(?<currentValue>.*)"
], ],
"depNameTemplate": "volker.raschek/docker-compose", "depNameTemplate": "volker.raschek/docker-compose",
"datasourceTemplate": "docker", "datasourceTemplate": "docker",