From 221666f59a582b9daf37eedb328800206fe6de55 Mon Sep 17 00:00:00 2001 From: Cameron Diver Date: Wed, 29 Aug 2018 10:24:11 -0700 Subject: [PATCH] Stop accepting resin-compose.yml as a build composition definition These files are not supported by any other part of the resin infrastructure, and it could cause confusion with it not being supported everywhere. The idea was originally added because we thought we might need to make extensions on docker-compose, but that hasn't happened. Change-type: major Signed-off-by: Cameron Diver --- lib/utils/compose.coffee | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/utils/compose.coffee b/lib/utils/compose.coffee index b29d9455..4102a938 100644 --- a/lib/utils/compose.coffee +++ b/lib/utils/compose.coffee @@ -34,8 +34,6 @@ exports.generateOpts = (options) -> inlineLogs: !!options.logs compositionFileNames = [ - 'resin-compose.yml' - 'resin-compose.yaml' 'docker-compose.yml' 'docker-compose.yaml' ]