From 2e7949ac239a9e9b4e6e23290f9877a18222851d Mon Sep 17 00:00:00 2001 From: Mark <162816078+markashton480@users.noreply.github.com> Date: Mon, 2 Mar 2026 15:01:27 +0000 Subject: [PATCH] fix(makefile): point DC at prod compose file The Makefile used bare 'docker compose' which picks up the dev docker-compose.yml when run from the app directory on prod. Point it at the absolute path to docker-compose.prod.yml instead. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e0190e4..cb8d923 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -DC = docker compose +DC = docker compose -f /srv/sum/nohype/docker-compose.prod.yml WEB = $(DC) exec web MANAGE = $(WEB) python manage.py -- 2.49.1