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
3 changed files with 48 additions and 2 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.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

@ -1,6 +1,6 @@
# DC_VERSION
# Only required to install a specifiy version
DC_VERSION?=v2.36.0 # renovate: datasource=github-releases depName=docker/compose
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

View File

@ -1,4 +1,4 @@
# docker-compose
# docker-compose-docker
[![Docker Pulls](https://img.shields.io/docker/pulls/volkerraschek/docker-compose)](https://hub.docker.com/r/volkerraschek/docker-compose)