Docker¶
We have an existing official image on DockerHub.
Usage¶
You can can use it like so:
docker pull wemakeservices/wemake-python-styleguide
docker run --rm wemakeservices/wemake-python-styleguide .
Make sure to place proper config file and mount it with the source code like so:
docker run --rm wemakeservices/wemake-python-styleguide -v `pwd`:/code /code
You can also use this image with Gitlab CI or any other container-based CIs.
Further reading¶
Official ‘docker run’ docs
Official GitlabCI docs