From 72c3c488ef2d77b36834418f71dca97004a5715f Mon Sep 17 00:00:00 2001 From: stam Date: Wed, 2 Jun 2021 02:30:31 +0300 Subject: [PATCH] testrail migrated to new format --- linux/testrail/latest/Makefile | 9 ++++----- linux/testrail/latest/docker-compose.yml | 6 ++++++ 2 files changed, 10 insertions(+), 5 deletions(-) create mode 100644 linux/testrail/latest/docker-compose.yml diff --git a/linux/testrail/latest/Makefile b/linux/testrail/latest/Makefile index 6e602e8f8..82c5a2de6 100644 --- a/linux/testrail/latest/Makefile +++ b/linux/testrail/latest/Makefile @@ -1,6 +1,5 @@ -all: tr - -tr: - docker build --compress -t epicmorg/testrail . - docker push epicmorg/testrail +all: app +app: + docker-compose build --compress + docker-compose push diff --git a/linux/testrail/latest/docker-compose.yml b/linux/testrail/latest/docker-compose.yml new file mode 100644 index 000000000..288250f78 --- /dev/null +++ b/linux/testrail/latest/docker-compose.yml @@ -0,0 +1,6 @@ +version: '3.9' +services: + app: + image: "epicmorg/testrail:latest" + build: + context: .