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: .