From 3877ac68e224eee3220b670e877a1312cff5ec03 Mon Sep 17 00:00:00 2001 From: Ryan Malloy Date: Mon, 2 Mar 2026 23:58:46 -0700 Subject: [PATCH] fix: prevent prod/dev container conflict in docs-site Makefile Stop the prod container before starting dev to avoid both registering the same domain with caddy-docker-proxy. --- docs-site/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs-site/Makefile b/docs-site/Makefile index ec237bb..2a00437 100644 --- a/docs-site/Makefile +++ b/docs-site/Makefile @@ -2,7 +2,8 @@ prod: docker compose up -d --build dev: - docker compose --profile dev up --build + docker compose stop docs 2>/dev/null || true + docker compose --profile dev up --build docs-dev down: docker compose down