Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/zavoloklom/docker-compose-linter
A command-line tool for validating and enforcing best practices in Docker Compose files.
https://github.com/zavoloklom/docker-compose-linter
dclint devops devops-tools docker docker-compose docker-compose-linter linter
Last synced: about 1 month ago
JSON representation
A command-line tool for validating and enforcing best practices in Docker Compose files.
- Host: GitHub
- URL: https://github.com/zavoloklom/docker-compose-linter
- Owner: zavoloklom
- License: mit
- Created: 2024-08-21T20:45:51.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2024-09-24T19:41:56.000Z (about 2 months ago)
- Last Synced: 2024-09-28T21:04:58.563Z (about 2 months ago)
- Topics: dclint, devops, devops-tools, docker, docker-compose, docker-compose-linter, linter
- Language: TypeScript
- Homepage:
- Size: 5.18 MB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Docker Compose Linter
[![Latest NPM Release Version](https://img.shields.io/npm/v/dclint?style=flat-square)](https://www.npmjs.com/package/dclint)
[![Latest Docker Hub Release Version](https://img.shields.io/docker/v/zavoloklom/dclint?style=flat-square&label=Docker%20Hub)](https://hub.docker.com/r/zavoloklom/dclint)
![Code Coverage Score](https://img.shields.io/codacy/coverage/2897b4940d094899ba59f1d287cdbd86?style=flat-square&label=Coverage)
[![Codacy Code Quality Score](https://img.shields.io/codacy/grade/2897b4940d094899ba59f1d287cdbd86?style=flat-square&logo=codacy&label=Code%20Quality)](https://app.codacy.com/gh/zavoloklom/docker-compose-linter/dashboard?utm_source=gl&utm_medium=referral&utm_content=&utm_campaign=Badge_grade)
[![Conventional Commits](https://img.shields.io/badge/Conventional%20Commits-1.0.0-%23FE5196?logo=conventionalcommits&logoColor=whit&style=flat-square)](https://conventionalcommits.org)> **Note**: Docker Compose configurations vary greatly between different projects and setups. While DCLint is stable,
> there may be edge cases or unique setups that cause issues. If you encounter any problems or have suggestions,
> please feel free to [open an issue](https://github.com/zavoloklom/docker-compose-linter/issues)
> or [submit a pull request](#contributing). Your feedback is highly appreciated!Docker Compose Linter (**DCLint**) is a utility designed to analyze, validate and fix Docker Compose files.
It helps identify errors, style violations, and potential issues in Docker Compose files, ensuring your configurations
are robust, maintainable, and free from common pitfalls.## Features
- **Error Detection**: Identifies syntax errors and common issues in Docker Compose files.
- **Style Enforcement**: Enforces best practices and style guidelines for maintainable configurations.
- **Flexible Integration**: Can be used locally, in Docker, or integrated into CI/CD pipelines.
- **Configurable Rules**: Customize the linter's behavior and rules according to your project's needs.
- **Auto-fixable Rules**: Some rules include an auto-fix mode, allowing you to automatically format and correct certain
issues in your files.
- **Comments Support**: After automated sorting and fixing, comments remain in the correct place, ensuring no important
information is lost during the formatting process.## Getting Started
### Installation with Node.js
You can install Docker Compose Linter locally in your project or use it directly with npx.
> **Note:** DCLint requires Node.js version 18 or higher.
To install it locally:
```shell
npm install --save-dev dclint
```### Running the Linter with npx
If you prefer not to install it globally, you can run the linter directly using npx:
```shell
npx dclint .
```This command will lint your Docker Compose files in the current directory.
### Linting Specific Files and Directories
To lint a specific Docker Compose file or a directory containing such files, specify the path relative to your
project directory:```shell
npx dclint /path/to/docker-compose.yml
```To lint all Docker Compose files in a specific directory, use the path to the directory:
```shell
npx dclint /path/to/directory
```In this case, `dclint` will search the specified directory for files matching the following
pattern `/^(docker-)?compose.*\.ya?ml$/`.It will handle all matching files within the directory and, if [recursive search](./docs/cli.md#-r---recursive) is
enabled, also in any subdirectories.Files and directories like `node_modules`, `.git,` or others specified in the exclusion list will be ignored.
### Display Help and Options
To display help and see all available options:
```shell
npx dclint -h
```For more details about available options and formatters, please refer to the [CLI Reference](./docs/cli.md)
and [Formatters Reference](./docs/formatters.md).## Usage with Docker
### Pull the Docker Image
First, pull the Docker image from the repository:
```shell
docker pull zavoloklom/dclint
```### Run the Linter in Docker
To lint your Docker Compose files, use the following command. This command mounts your current working directory
`${PWD}` to the `/app` directory inside the container and runs the linter:```shell
docker run -t --rm -v ${PWD}:/app zavoloklom/dclint .
```### Linting Specific Files and Directories in Docker
If you want to lint a specific Docker Compose file or a directory containing such files, specify the path relative
to your project directory:```shell
docker run -t --rm -v ${PWD}:/app zavoloklom/dclint /app/path/to/docker-compose.yml
``````shell
docker run -t --rm -v ${PWD}:/app zavoloklom/dclint /app/path/to/directory
```### Display Help in Docker
To display help and see all available options:
```shell
docker run -t --rm -v ${PWD}:/app zavoloklom/dclint -h
```For more information about available options and formatters, please refer to the [CLI Reference](./docs/cli.md)
and [Formatters Reference](./docs/formatters.md).## Rules and Errors
Docker Compose Linter includes set of rules to ensure your Docker Compose files adhere to best practices. Detailed
documentation for each rule and the errors that can be detected by the linter is available here:- [Rules Documentation](./docs/rules.md)
- [Errors Documentation](./docs/errors.md)DCLint uses the [yaml](https://github.com/eemeli/yaml) library for linting and formatting Docker Compose files.
This ensures that any configuration files you check are compliant with YAML standards. Before any rule
checks are applied, two important validations are performed, which cannot be
disabled - [YAML Validity Check](./docs/errors/invalid-yaml.md)
and [Docker Compose Schema Validation](./docs/errors/invalid-schema.md).## Configuration
DCLint allows you to customize the set of rules used during linting to fit your project's
specific needs. You can configure which rules are applied, their severity levels, and additional behavior settings
using a configuration file.### Supported Configuration File Formats
DCLint supports flexible configuration options through the use
of [cosmiconfig](https://github.com/cosmiconfig/cosmiconfig). This means you can use various formats to configure the
linter, including JSON, YAML, and JavaScript files.For example:
- `.dclintrc` (JSON, YAML, or JavaScript)
- `dclint.config.js` (JavaScript)
- A `dclint` key inside your `package.json`### Example Configuration File
Here is an example of a configuration file using JSON format:
```json
{
"rules": {
"no-version-field": 0,
"require-quotes-in-ports": 1,
"services-alphabetical-order": 2
},
"quiet": false,
"debug": true,
"exclude": [
"tests"
]
}
```- **rules**: Customize which rules to apply and their severity levels (`0` - Disabled, `1` - Warning, `2` - Error).
- **quiet**: Suppresses non-error output if set to `true`.
- **debug**: Enables debug mode with additional output if set to `true`.
- **exclude**: Specifies files or directories to exclude from linting.### Configure Rules
In addition to enabling or disabling rules, some rules may support custom parameters to tailor them to your specific
needs. For example, the [require-quotes-in-ports](./docs/rules/require-quotes-in-ports-rule.md) rule allows you to
configure
whether single or double quotes should be used around port numbers. You can configure it like this:```json
{
"rules": {
"require-quotes-in-ports": [
2,
{
"quoteType": "double"
}
]
}
}
```In this example, the require-quotes-in-ports rule is enabled at the error level and configured to enforce double quotes
around ports.## Integrate into CI/CD Pipeline
Automate linting as part of your CI/CD pipeline by adding the Docker run command to your pipeline script. This ensures
that your Docker Compose files are always checked for errors before deployment.### GitLab CI Example
```yaml
lint-docker-compose:
image:
name: zavoloklom/dclint
entrypoint: [""]
script:
- node --no-warnings /dclint/bin/dclint.js . -r -f codeclimate -o gl-codequality.json
artifacts:
reports:
codequality: gl-codequality.json
```## Alternatives
Consider these alternative tools for Docker Compose linting and validation:
- [kics](https://github.com/Checkmarx/kics)
- [checkov](https://github.com/bridgecrewio/checkov)
- [yamllint](https://github.com/adrienverge/yamllint)
- [docker-compose-linter](https://github.com/alfonzso/docker-compose-linter/tree/master)And this tools for Docker Compose formatting and fixing:
- [compose_format](https://github.com/funkwerk/compose_format/)
- [yamlfix](https://github.com/lyz-code/yamlfix)## Contributing
If you encounter any issues or have suggestions for improvements, feel free to open
an [issue](https://github.com/zavoloklom/docker-compose-linter/issues) or submit
a [pull request](https://github.com/zavoloklom/docker-compose-linter/pulls).If you'd like to contribute to this project, please read through the [CONTRIBUTING.md](./CONTRIBUTING.md) file.
Please note that this project is released with a [Contributor Code of Conduct](./CODE_OF_CONDUCT.md). By participating
in this project, you agree to abide by its terms.- [How to set up the project](./CONTRIBUTING.md)
- [How to add a new rule](./CONTRIBUTING.md#how-to-add-a-new-rule)## Changelog
The changelog is automatically generated based
on [semantic-release](https://github.com/semantic-release/semantic-release)
and [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/).See the [CHANGELOG.md](./CHANGELOG.md) file for detailed lists of changes for each version.
## License
This project is licensed under the MIT License. See the [LICENSE](./LICENSE) file for more information.
## Contact
If you have any questions or suggestions, feel free to reach out:
- **Email**: [[email protected]](mailto:[email protected])
- **Twitter**: [zavoloklom](https://x.com/zavoloklom)
- **GitHub**: [zavoloklom](https://github.com/zavoloklom)