Updating Drone pipeline config with new Docker Compose image.

This commit is contained in:
Alexey Skobkin 2024-11-05 02:12:09 +03:00
parent 47479db0b1
commit 42050a8e1f
No known key found for this signature in database
GPG key ID: 5D5CEF6F221278E7

View file

@ -4,10 +4,10 @@ name: validate-pr
steps: steps:
- name: validate - name: validate
image: 'docker/compose:alpine-1.29.2' image: 'docker/compose-bin:latest'
commands: commands:
- for DIR in */ ; do if [[ $(expr match "$DIR" "_.*") != 0 ]] ; then echo "SKIPPING $DIR" && continue; fi && test -f $DIR/.env.dist && cp $DIR/.env.dist $DIR/.env ; done - for DIR in */ ; do if [[ $(expr match "$DIR" "_.*") != 0 ]] ; then echo "SKIPPING $DIR" && continue; fi && test -f $DIR/.env.dist && cp $DIR/.env.dist $DIR/.env ; done
- for DIR in */ ; do if [[ $(expr match "$DIR" "_.*") != 0 ]] ; then echo "SKIPPING $DIR" && continue; fi && echo $DIR && cd $DIR && docker-compose config && cd .. ; done - for DIR in */ ; do if [[ $(expr match "$DIR" "_.*") != 0 ]] ; then echo "SKIPPING $DIR" && continue; fi && echo $DIR && cd $DIR && /docker-compose config && cd .. ; done
trigger: trigger:
event: event: