orginux / docker-yamllint

Docker image for yamllint

Home Page:https://hub.docker.com/r/orginux/yamllint

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

docker-yamllint

Docker image based on python3.9 with installed yamllint

Run in Docker

Run linter for all files in the current directory

docker run --rm -it -v ${PWD}:/yamllint orginux/yamllint yamllint *.y*ml

Change $PWD on a path in the local file system

Run in GitLab-CI

---
yamllint:
  image: orginux/yamllint:1.25.1
  stage: lint
  variables:
    MAX_LEN: 120
    YAMLLINT_CONFIG: "{rules: {line-length: {max: $MAX_LEN}}}"
  script:
    - yamllint -d "$YAMLLINT_CONFIG" path/to/file.yml
...

About

Docker image for yamllint

https://hub.docker.com/r/orginux/yamllint


Languages

Language:Dockerfile 100.0%