From fca0a67bfdffb774f1cbd8af1335690f6edd8ed8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Robert=20Sch=C3=A4fer?= Date: Fri, 14 Dec 2018 18:30:10 +0100 Subject: [PATCH] Don't user docker-compose.override.yml on Travis It creates volumes and these volumns will change ownership and linux file permissions. That in turn will prevent Travis from removing those files and eventually crash the deployment. --- .travis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index 8bfe76dcf..5a5dc960f 100644 --- a/.travis.yml +++ b/.travis.yml @@ -19,7 +19,7 @@ before_install: install: - docker build --build-arg BUILD_COMMIT=$TRAVIS_COMMIT -t humanconnection/nitro-backend:latest . - - docker-compose up -d + - docker-compose -f docker-compose.yml up -d script: - docker-compose exec backend yarn run ci