https://github.com/norberttech/md-link-linter-docker
🐳 Docker image for MD Link Linter
https://github.com/norberttech/md-link-linter-docker
Last synced: 3 months ago
JSON representation
🐳 Docker image for MD Link Linter
- Host: GitHub
- URL: https://github.com/norberttech/md-link-linter-docker
- Owner: norberttech
- Created: 2019-12-14T20:50:54.000Z (over 6 years ago)
- Default Branch: main
- Last Pushed: 2024-07-29T10:22:37.000Z (almost 2 years ago)
- Last Synced: 2025-03-24T16:58:42.613Z (about 1 year ago)
- Language: Dockerfile
- Homepage: https://hub.docker.com/r/norberttech/md-link-linter
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Docker image for [MD Link Linter](https://github.com/norzechowicz/md-link-linter)
Simple command line tool that iterates recursively over all folders in selected location, looking for markdown
files and validating links in those files.
## Supported tags
- `latest`
- `0.0.11`
- `0.0.10`
- `0.0.9`
Each tag matches [MD Link Linter](https://github.com/norzechowicz/md-link-linter) release. Latest represents unreleased version.
### Install
Install the container:
```
docker pull norberttech/md-link-linter
```
### Usage
Display help:
```bash
docker run -t --rm norberttech/md-link-linter --help
```
Validate markdown files in a current folder:
```bash
docker run -t --rm -v $PWD:/app norberttech/md-link-linter --exclude=vendor --exclude=node_modules .
```
### Building Image
```bash
docker buildx create --name builder --use
docker buildx build -t norberttech/md-link-linter:latest . --push --no-cache --progress=plain --build-arg MD_LINK_LINT_VERSION=1.x-dev --platform=linux/amd64,linux/arm64
docker buildx build -t norberttech/md-link-linter:0.3.0 . --push --no-cache --progress=plain --build-arg MD_LINK_LINT_VERSION=0.3.0 --platform=linux/amd64,linux/arm64
```