Inbucket version fix. (#40)

Reviewed-on: #40
This commit is contained in:
Alexey Skobkin 2022-05-31 21:14:52 +03:00
parent ddd06555e4
commit f7d87305db
2 changed files with 9 additions and 2 deletions

View File

@ -1,10 +1,15 @@
kind: pipeline
type: docker
name: default
name: validate-pr
steps:
- name: validate
image: 'docker/compose:1.29.2'
image: 'docker/compose:alpine-1.29.2'
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

View File

@ -1,3 +1,5 @@
version: '3.7'
services:
inbucket:
image: inbucket/inbucket:latest