From d9692da89c91af2778e0c88eb8d58e8e7452d794 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Thu, 25 Jun 2026 11:29:12 +0100 Subject: [PATCH] replaces 'stop' with 'down' to remove containers (so that they get re-created with fresh images) --- openrc/joeac.net | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openrc/joeac.net b/openrc/joeac.net index 83e9566..3e67520 100755 --- a/openrc/joeac.net +++ b/openrc/joeac.net @@ -38,7 +38,7 @@ start() { stop() { ebegin "Stopping ${SVCNAME}" - "${COMPOSECMD}" -f "${COMPOSEFILE}" stop --timeout=300 + "${COMPOSECMD}" -f "${COMPOSEFILE}" down --timeout=300 eend $? }