Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 1.02 KB

README.md

File metadata and controls

30 lines (20 loc) · 1.02 KB

Docker Image for ansible/ansible-lint

CircleCI

Supported tags and respective Dockerfile links

How to use this image

show usage

$ docker run --rm yokogawa/ansible-lint

example

with find

$ docker run --rm -v ${PWD}:/work -w /work yokogawa/ansible-lint sh -c 'find . -name "*.yml" | xargs -r ansible-lint --force-color'

with git ls-files

$ docker run --rm -v ${PWD}:/work -w /work yokogawa/ansible-lint sh -c 'git ls-files -z "*.yml" | xargs -r -0 ansible-lint'