Fix install script

This commit is contained in:
Brad Treloar 2025-04-26 00:20:16 +09:30
parent 40a91f6d66
commit 70437d9d1a

View file

@ -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 .