From f7d87305db80b49839279a5cd9bc4ea7f69bfcd8 Mon Sep 17 00:00:00 2001 From: Alexey Skobkin Date: Tue, 31 May 2022 21:14:52 +0300 Subject: [PATCH] Inbucket version fix. (#40) Reviewed-on: https://git.skobk.in/skobkin/docker-stacks/pulls/40 --- .drone.yml | 9 +++++++-- inbucket/docker-compose.yml | 2 ++ 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.drone.yml b/.drone.yml index e953834..d513f16 100644 --- a/.drone.yml +++ b/.drone.yml @@ -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 diff --git a/inbucket/docker-compose.yml b/inbucket/docker-compose.yml index d33dfcc..58dfe71 100644 --- a/inbucket/docker-compose.yml +++ b/inbucket/docker-compose.yml @@ -1,3 +1,5 @@ +version: '3.7' + services: inbucket: image: inbucket/inbucket:latest