KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
docker-ansible-lint
★ 9
Open GitHub ↗
Docker Image for ansible-lint
Download README (.md)
Explore Similar Repositories
Dyna-Blaster-cocos2dx
:
No description available.
FootballNews
:
足球资讯App——汇聚精彩足球资讯
DatingApp
:
React-Native Dating App for Android
i18n
:
Internationalisation for Haskell
HappySnake
:
快乐贪吃蛇
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
docker-ansible-lint
?
Download (.md)
# Docker Image for [ansible/ansible\-lint](https://github.com/ansible/ansible-lint) [](https://github.com/yokogawa-k/docker-ansible-lint/actions/workflows/ci.yml) [](https://microbadger.com/images/yokogawa/ansible-lint "Get your own image badge on microbadger.com") ## Supported tags and respective `Dockerfile` links - [`latest` (python3/Dockerfile)][ansible-lint] ## How to use this image #### show usage ```console $ docker run --rm yokogawa/ansible-lint ``` #### example with find ```console $ 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 ```console $ docker run --rm -v ${PWD}:/work -w /work yokogawa/ansible-lint sh -c 'git ls-files -z "*.yml" | xargs -r -0 ansible-lint' ``` ## Maintenance ### Update pinned APK package versions Dependabot updates `requirements.txt` (pip), but it does not update versions pinned in `apk add package=version` lines. Use the update script to refresh `APK_*_VERSION` in `Dockerfile` from the current base image: ```console $ ./scripts/update-apk-pins.sh ``` If you only want to preview changes: ```console $ ./scripts/update-apk-pins.sh --dry-run ``` After updating pins, validate: ```console $ docker build -t yokogawa/ansible-lint:latest . && ./test/script.sh ``` [ansible-lint]: https://github.com/yokogawa-k/docker-ansible-lint/blob/main/Dockerfile