1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-26 09:37:56 +00:00
transmission/docker-compose.yml
Charles Kerr 54a7cac25a
chore: run uncrustify in parallel; add package.json to web directory (#1454)
* refactor: add package.json for web client

* refactor: call uncrustify in parallel
2020-09-20 15:41:45 -05:00

10 lines
236 B
YAML

version: '3'
services:
code_style:
build: docker/code_style
volumes:
- .:/src
- ./code_style.sh:/code_style.sh:ro
- ./format:/format:ro
command: ["/bin/bash", "-c", "cd /src && ./code_style.sh --check"]