mirror of
https://github.com/HariSekhon/DevOps-Bash-tools.git
synced 2025-02-06 09:28:21 +00:00
33 lines
918 B
YAML
33 lines
918 B
YAML
# vim:ts=4:sts=4:sw=4:et
|
|
#
|
|
# Author: Hari Sekhon
|
|
# Date: 2019-10-01 16:14:15 +0100 (Tue, 01 Oct 2019)
|
|
#
|
|
# https://github.com/HariSekhon/DevOps-Bash-tools
|
|
#
|
|
# License: see accompanying Hari Sekhon LICENSE file
|
|
#
|
|
# If you're using my code you're welcome to connect with me on LinkedIn and optionally send me feedback to help improve or steer this or other code I publish
|
|
#
|
|
# https://www.linkedin.com/in/HariSekhon
|
|
#
|
|
|
|
# sourced by check_dockerfiles.sh if no \$PWD/.hadolint.yaml is found
|
|
|
|
ignored:
|
|
# Maintainer is deprecated
|
|
- DL4000
|
|
# FROM latest - dev images build on upstream latest tag intentionally
|
|
- DL3007
|
|
# apt-get install versions need not be pinned
|
|
- DL3008
|
|
# apk add versions need not be pinned
|
|
- DL3018
|
|
#- SC1010
|
|
# - for dev images it's ok to use both curl and wget as they are dependencies of different scripts
|
|
- DL4001
|
|
|
|
trustedRegistries:
|
|
- docker.io
|
|
#- my-company.com:5000
|