Skip to content

Latest commit

 

History

History
32 lines (26 loc) · 900 Bytes

README.md

File metadata and controls

32 lines (26 loc) · 900 Bytes

Docker image for TypoScript Lint

Docker hub

Tiny Alpine-based multistage-build dockerized version of TypoScript Lint. The image is built with the latest PHP and Typoscript Lint version.

Usage

Command line

docker run --rm -it -v $(pwd):/data brosua/typo3-typoscript-lint .

You can also add all options of typo3-typoscript-lint to your command:

docker run --rm -it -v $(pwd):/data brosua/typo3-typoscript-lint -c .build/testing/.typoscript-lint.yml

GitLab CI

stages:
 - lint

lint-typoscript:
  stage: lint
  image:
    name: brosua/typo3-typoscript-lint
    entrypoint: ["/bin/ash", "-c"]
  script:
    - typoscript-lint

License

MIT License