From 3a0c706c5f1f115e516dfd0eb94a602ac80c69cb Mon Sep 17 00:00:00 2001 From: Teck Meng Date: Sat, 14 Sep 2024 16:35:16 +0800 Subject: [PATCH] Add remove-authentik target to makefile for stack removal --- makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index 0346814..b191690 100644 --- a/makefile +++ b/makefile @@ -68,7 +68,8 @@ deploy-authentik: pull set +a ;\ docker stack deploy --compose-file ./swarm/authentik.yml authentik ;\ } - +remove-authentik: + docker stack rm authentik deploy-apps: pull { \ echo "Deploying the apps stack..." ;\