docker-stacks/.gitlab-ci.yml

6 lines
226 B
YAML
Raw Normal View History

2022-01-27 00:12:18 +00:00
validate:
image: 'docker/compose:1.29.2'
script:
2022-01-27 00:23:33 +00:00
- for DIR in */ ; do test -f $DIR/.env.dist && cp $DIR/.env.dist $DIR/.env ; done
2022-01-27 00:20:36 +00:00
- for DIR in */ ; do echo $DIR && cd $DIR && docker-compose config && cd .. ; done