Files
markdownlint-docker/README.md
CSRBot cfbe8c9c06
Some checks failed
Lint Markdown files / markdown-lint (pull_request) Successful in 10s
Build / build-amd64 (pull_request) Failing after 26s
Build / build-arm64 (pull_request) Failing after 1m3s
chore(deps): update dependency igorshubovych/markdownlint-cli to v0.48.0
2026-03-03 08:08:09 +00:00

21 lines
838 B
Markdown

# markdownlint-docker
[![Docker Pulls](https://img.shields.io/docker/pulls/volkerraschek/markdownlint)](https://hub.docker.com/r/volkerraschek/markdownlint)
This project contains all sources to build the container image `git.cryptic.systems/volker.raschek/markdownlint`. The
primary goal of this project is to package the binary `markdownlint-ci` as container image. The source code of the
binary can be found in the upstream project of [igorshubovych](https://github.com/igorshubovych/markdownlint-cli).
The workflow or how `markdownlint-ci` can be used is pretty good
[documented](https://github.com/igorshubovych/markdownlint-cli#usage).
```bash
IMAGE_VERSION=0.48.0
docker run \
--rm \
--volume "$(pwd):$(pwd)" \
--workdir "$(pwd)" \
"git.cryptic.systems/volker.raschek/markdownlint:${IMAGE_VERSION}" \
--help
```