From 7fa98582fa9feb006952647f0c38c4c3f1390331 Mon Sep 17 00:00:00 2001 From: rockstardev <5191402+rockstardev@users.noreply.github.com> Date: Thu, 4 Dec 2025 16:50:54 -0600 Subject: [PATCH] chore: add service update instructions to readme Added instructions for updating services in the README. --- README.md | 15 ++++++++++++++- 1 file changed, 14 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index af46d01..ffb7037 100644 --- a/README.md +++ b/README.md @@ -13,4 +13,17 @@ PB_HOST= Where you should replace: * ``: Replace with a connection string from a azure storage account. This is where the built plugins are hosted. -* ``: The domain name of your plugin builder website. HTTPS will be provisioned by let's encrypt automatically. \ No newline at end of file +* ``: The domain name of your plugin builder website. HTTPS will be provisioned by let's encrypt automatically. + +## Updating Services + +If you need to update the version of a service (e.g., Plugin Builder), follow these steps: + +1. Update the `docker-compose.yml` file in the repository and push commit. +2. On the server, run the following commands: + +```bash +git fetch +git pull +docker compose up -d +```