{"id":17004783,"url":"https://github.com/gtramontina/docker-commitlint","last_synced_at":"2025-03-22T16:30:49.705Z","repository":{"id":28917247,"uuid":"116747459","full_name":"gtramontina/docker-commitlint","owner":"gtramontina","description":"An image for https://github.com/marionebl/commitlint","archived":false,"fork":false,"pushed_at":"2024-10-30T01:46:00.000Z","size":139,"stargazers_count":2,"open_issues_count":9,"forks_count":2,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-10-30T03:59:32.231Z","etag":null,"topics":["commitlint","docker","docker-image","git","node"],"latest_commit_sha":null,"homepage":null,"language":"Makefile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/gtramontina.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-01-09T01:08:03.000Z","updated_at":"2021-06-17T01:30:31.000Z","dependencies_parsed_at":"2023-10-15T13:25:01.634Z","dependency_job_id":"9f25ab9e-2967-453b-bac7-22090745c32a","html_url":"https://github.com/gtramontina/docker-commitlint","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gtramontina%2Fdocker-commitlint","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gtramontina%2Fdocker-commitlint/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gtramontina%2Fdocker-commitlint/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/gtramontina%2Fdocker-commitlint/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/gtramontina","download_url":"https://codeload.github.com/gtramontina/docker-commitlint/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244986339,"owners_count":20542999,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["commitlint","docker","docker-image","git","node"],"created_at":"2024-10-14T04:44:27.386Z","updated_at":"2025-03-22T16:30:49.422Z","avatar_url":"https://github.com/gtramontina.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://hub.docker.com/r/gtramontina/commitlint/tags/\"\u003e\u003cimg height=\"20\" alt=\"Docker Tags\" src=\"https://img.shields.io/badge/dynamic/json.svg?style=for-the-badge\u0026label=%F0%9F%90%B3%20tags\u0026colorB=066da5\u0026query=$.count\u0026uri=https%3A%2F%2Fhub.docker.com%2Fv2%2Frepositories%2Fgtramontina%2Fcommitlint%2Ftags\"\u003e\u003c/a\u003e\n  \u003ca href=\"https://hub.docker.com/r/gtramontina/commitlint/tags/\"\u003e\u003cimg height=\"20\" alt=\"Docker Latest Tag\" src=\"https://img.shields.io/badge/dynamic/json.svg?style=for-the-badge\u0026label=%F0%9F%90%B3%20latest%20tag\u0026colorB=066da5\u0026query=$.results[0].name\u0026uri=https%3A%2F%2Fhub.docker.com%2Fv2%2Frepositories%2Fgtramontina%2Fcommitlint%2Ftags\"\u003e\u003c/a\u003e\n  \u003ca href=\"https://travis-ci.org/gtramontina/docker-commitlint\"\u003e\u003cimg height=\"20\" alt=\"Travis\" src=\"https://img.shields.io/travis/gtramontina/docker-commitlint.svg?style=for-the-badge\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  Docker image for \u003ca href=\"https://github.com/marionebl/commitlint\"\u003e\u003ccode\u003ecommitlint\u003c/code\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n---\n\n#### _Running:_\n\n```sh\n$ docker run --rm gtramontina/commitlint:\u003cversion\u003e\n```\n\nYou'll get a `/app` work directory, so all you need to do is mount your `git`-based project in the that directory with the `-v, --volume` docker parameter:\n\n```sh\n--volume $(pwd):/app\n```\n\nIf you prefer, you can mount only your `.git` directory and your [configuration](https://github.com/marionebl/commitlint#config) file, like so:\n\n```sh\n--volume $(pwd)/.git:/app/.git \\\n--volume $(pwd)/.commitlintrc:/app/.commitlintrc\n```\n\nOr, if, for whatever reason, you need a different work directory, you can simply set it with `-w, --workdir`:\n\n```sh\n--workdir /my-app \\\n--volume $(pwd):/my-app\n```\n\n**Note 1**: If you want `commitlint` to read from `STDIN`, don't forget to set the `-i, --interactive` flag to keep `STDIN` open.\n\n**Note 2**: This image ships with the following `commitlint`'s configuration preset packages (so you can extend them in your [configuration](https://github.com/marionebl/commitlint#config) file):\n\n* [`@commitlint/config-angular`](https://github.com/marionebl/commitlint/tree/master/%40commitlint/config-angular)\n* [`@commitlint/config-angular-type-enum`](https://github.com/marionebl/commitlint/tree/master/%40commitlint/config-angular-type-enum)\n* [`@commitlint/config-conventional`](https://github.com/marionebl/commitlint/tree/master/%40commitlint/config-conventional)\n* [`@commitlint/config-lerna-scopes`](https://github.com/marionebl/commitlint/tree/master/%40commitlint/config-lerna-scopes)\n* [`@commitlint/config-patternplate`](https://github.com/marionebl/commitlint/tree/master/%40commitlint/config-patternplate)\n\n---\n\n#### _Developing:_\n\n```sh\n$ make build    # Builds a new image\n$ make test     # Runs/tests the image\n$ make push     # Pushes the image up\n$ make clean    # Removes any generated artifacts\n$ make clobber  # Removes artifacts and generated images\n```\n\n---\n\n\u003cp align=\"right\"\u003e🐳\u003c/p\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgtramontina%2Fdocker-commitlint","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgtramontina%2Fdocker-commitlint","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgtramontina%2Fdocker-commitlint/lists"}