Update .drone.yml
Some checks reported errors
continuous-integration/drone/push Build encountered an error

This commit is contained in:
Matt Reeves 2024-02-13 05:11:33 +00:00
parent e137bc11aa
commit c8d0058452

View file

@ -1,12 +1,8 @@
kind: pipeline kind: pipeline
name: lint name: docker-compose-lint
steps: steps:
{{#each services}} - name: lint
- name: lint-${{ normalize . }} image: drone/compose-lint:latest
image: docker/compose:1.29.2
commands: commands:
- cd ./${{ normalize . }} - compose-lint .
- docker-compose config --quiet
- docker-compose config
{{/each}}