docker-stacks/.drone.yml
Alexey Skobkin 55328a932b
All checks were successful
continuous-integration/drone/pr Build is passing
immich. changing docker image for CI.
2024-11-05 02:39:16 +03:00

17 lines
530 B
YAML

kind: pipeline
type: docker
name: validate-pr
steps:
- name: validate
image: 'dockette/docker:latest'
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 && echo $DIR && cd $DIR && docker compose config && cd .. ; done
trigger:
event:
include:
- pull_request