From 70437d9d1a28f3029c9bc2dc176b18b3e865acaa Mon Sep 17 00:00:00 2001 From: Brad Treloar Date: Sat, 26 Apr 2025 00:20:16 +0930 Subject: [PATCH] Fix install script --- docker/install.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docker/install.sh b/docker/install.sh index 9ffc8d9..dc74f37 100755 --- a/docker/install.sh +++ b/docker/install.sh @@ -1,5 +1,10 @@ #!/bin/bash +# Remove the existing container +systemctl stop notes.service +systemctl disable notes.service +docker container rm notes-server + # Build the notes-server image. docker build --no-cache -t notes-server .