Alpine-based Docker image for running laravel/pint.
This docker image is automatically updated when a new version of laravel/pint
or the PHP 8.2 docker container is released.
By default pinter will run with the --test
flag:
$ docker run -it --rm -v $PWD:/workspace arcdigital/pinter
You can run it without the --test
flag:
$ docker run -it --rm -v $PWD:/workspace arcdigital/pinter ""
You can pass options such as a --preset
(the default is laravel
):
$ docker run -it --rm -v $PWD:/workspace arcdigital/pinter --preset psr12
Build the container:
$ docker build -t pinter .
Run the locally built container:
$ docker run -it --rm -v $PWD:/workspace pinter
See the LICENSE file.
This project takes inspiration from syncloudsoftech/pinter.