https://github.com/cmgrayb/yamllint
https://github.com/cmgrayb/yamllint
Last synced: 5 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/cmgrayb/yamllint
- Owner: cmgrayb
- License: mit
- Created: 2025-01-28T14:50:58.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-06-27T23:21:45.000Z (12 months ago)
- Last Synced: 2025-08-04T15:59:55.999Z (11 months ago)
- Language: Dockerfile
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# YAMLLint container for CI/CD pipelines



This container is used to lint YAML files in CI/CD pipelines. It uses the [YAMLLint](https://yamllint.readthedocs.io/en/stable/) tool to lint the YAML files.
## Usage
### Production ring
```bash
docker run --rm -v $(pwd):/data ghcr.io/cmgrayb/yamllint[:latest] yamllint FILE_OR_DIRECTORY [additional options]
```
### Beta/nightly ring
```bash
docker run --rm -v $(pwd):/data ghcr.io/cmgrayb/yamllint:nightly yamllint FILE_OR_DIRECTORY [additional options]
```
### Alpha ring
```bash
docker run --rm -v $(pwd):/data ghcr.io/cmgrayb/yamllint:main yamllint FILE_OR_DIRECTORY [additional options]
```