From cc928de2489b61dbab88583351d941e666efeb7d Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Mon, 2 Aug 2021 19:24:05 +0100 Subject: [PATCH] Add a target for running in production [skip ci] --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index ebf4b800..5594b306 100644 --- a/Makefile +++ b/Makefile @@ -31,6 +31,9 @@ push-images: docker image push $(DOCKER_WEB_IMAGE_NAME):$(DOCKER_TAG) docker image push $(DOCKER_WEB_IMAGE_NAME):latest +run-production: + docker-compose --file docker-compose-production.yaml up --detach --remove-orphans + .PHONY: * # vim: noexpandtab filetype=make