All #awesome-ci Docker images
ansible-lint • ansible • awesome-ci • bandit • black • checkmake • eslint • file-lint • gofmt • goimports • golint • jsonlint • kubeval • linkcheck • mypy • php-cs-fixer • phpcbf • phpcs • phplint • pycodestyle • pydocstyle • pylint • terraform-docs • terragrunt-fmt • terragrunt • yamlfmt • yamllint
View Dockerfiles on GitHub.
Available Architectures: amd64
, i386
, arm64
Tiny Alpine-based multistage-build dockerized version of ansible-lint[1].
The image is built nightly against the latest stable version of ansible-lint
and pushed to Dockerhub.
[1] Official project: https://github.com/ansible/ansible-lint
The following Docker image tags are rolling releases and are built and updated every night.
Docker Tag | Git Ref | Ansible Lint | Flavour | Available Architectures |
---|---|---|---|---|
latest |
master | latest | default | amd64 , i386 , arm64 |
alpine |
master | latest | Alpine | amd64 , i386 , arm64 |
6 |
master | 6.x.x |
default | amd64 , i386 , arm64 |
alpine-6 |
master | 6.x.x |
Alpine | amd64 , i386 , arm64 |
5 |
master | 5.x.x |
default | amd64 , i386 , arm64 |
alpine-5 |
master | 5.x.x |
Alpine | amd64 , i386 , arm64 |
The following Docker image tags are built once and can be used for reproducible builds. Its version never changes so you will have to update tags in your pipelines from time to time in order to stay up-to-date.
Docker Tag | Git Ref | Ansible Lint | Flavour | Available Architectures |
---|---|---|---|---|
latest-0.7 |
tag: 0.7 | latest | default | amd64 , i386 , arm64 |
alpine-latest-0.7 |
tag: 0.7 | latest | Alpine | amd64 , i386 , arm64 |
6-0.7 |
tag: 0.7 | 6.x.x |
default | amd64 , i386 , arm64 |
alpine-6-0.7 |
tag: 0.7 | 6.x.x |
Alpine | amd64 , i386 , arm64 |
5-0.7 |
tag: 0.7 | 5.x.x |
default | amd64 , i386 , arm64 |
alpine-5-0.7 |
tag: 0.7 | 5.x.x |
Alpine | amd64 , i386 , arm64 |
The working directory inside the Docker container is /data/
and should be mounted locally to
the root of your project where your .ansible-lint
config file is located.
# Single playbook
docker run --rm -v $(pwd):/data cytopia/ansible-lint playbook.yml
# All playbooks via wildcard
docker run --rm -v $(pwd):/data cytopia/ansible-lint *.yml
# Single role (run from within the role's root)
docker run --rm -v "$(pwd)":"/data/$(basename "$(pwd)" )" -e ANSIBLE_ROLES_PATH="/data" cytopia/ansible-lint "/data/$(basename "$(pwd)" )/tests/test.yml"
GitLabCI requires a shell entrypoint to be specified. See here for details: Issue #14.
default:
image:
name: cytopia/ansible-lint:latest
entrypoint: ["/bin/sh", "-c"]
stages:
- lint
ansible-linter:
stage: lint
script:
- ansible-lint *.yaml
only:
- merge_requests
- master
🔄 Related #awesome-ci projects
Save yourself from installing lot's of dependencies and pick a dockerized version of your favourite linter below for reproducible local or remote CI tests:
GitHub | DockerHub | Type | Description |
---|---|---|---|
awesome-ci | Basic | Tools for git, file and static source code analysis | |
file-lint | Basic | Baisc source code analysis | |
linkcheck | Basic | Search for URLs in files and validate their HTTP status code | |
ansible | Ansible | Multiple versions and flavours of Ansible | |
ansible-lint | Ansible | Lint Ansible | |
gofmt | Go | Format Go source code [1] | |
goimports | Go | Format Go source code [1] | |
golint | Go | Lint Go code | |
eslint | Javascript | Lint Javascript code | |
jsonlint | JSON | Lint JSON files [1] | |
kubeval | K8s | Lint Kubernetes files | |
checkmake | Make | Lint Makefiles | |
phpcbf | PHP | PHP Code Beautifier and Fixer | |
phpcs | PHP | PHP Code Sniffer | |
phplint | PHP | PHP Code Linter [1] | |
php-cs-fixer | PHP | PHP Coding Standards Fixer | |
bandit | Python | A security linter from PyCQA | |
black | Python | The uncompromising Python code formatter | |
mypy | Python | Static source code analysis | |
pycodestyle | Python | Python style guide checker | |
pydocstyle | Python | Python docstyle checker | |
pylint | Python | Python source code, bug and quality checker | |
terraform-docs | Terraform | Terraform doc generator (TF 0.12 ready) [1] | |
terragrunt | Terraform | Terragrunt and Terraform | |
terragrunt-fmt | Terraform | terraform fmt for Terragrunt files [1] |
|
yamlfmt | Yaml | Format Yaml files [1] | |
yamllint | Yaml | Lint Yaml files |
[1] Uses a shell wrapper to add enhanced functionality not available by original project.
Visit cytopia/makefiles for dependency-less, seamless project integration and minimum required best-practice code linting for CI. The provided Makefiles will only require GNU Make and Docker itself removing the need to install anything else.
Copyright (c) 2019 cytopia