From d742b62f63712fd3df1f65f3a55ee98f1c85e2a9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20K=C3=B6ssler?= Date: Sun, 3 May 2026 11:14:24 +0200 Subject: [PATCH 1/2] docs: New update command and dependabot cooldown --- .github/dependabot.yml | 6 ++++++ content/docs/setup/upgrading.mdx | 10 +++++----- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 66bbeb0..0f6a4f8 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,6 +10,8 @@ updates: labels: - "dependencies" open-pull-requests-limit: 5 + cooldown: + default-days: 2 groups: dependencies: patterns: @@ -25,6 +27,8 @@ updates: labels: - "dependencies" open-pull-requests-limit: 5 + cooldown: + default-days: 2 groups: dependencies: patterns: @@ -40,6 +44,8 @@ updates: labels: - "dependencies" open-pull-requests-limit: 5 + cooldown: + default-days: 2 groups: dependencies: patterns: diff --git a/content/docs/setup/upgrading.mdx b/content/docs/setup/upgrading.mdx index 66c84d8..c15c203 100644 --- a/content/docs/setup/upgrading.mdx +++ b/content/docs/setup/upgrading.mdx @@ -8,18 +8,18 @@ description: Keep your OrcaCD installation up to date and keeping a copy of your current `.env` and `docker-compose.yml` files. This gives you a rollback path if something goes wrong. - To create a backup of your database, you can copy the `hub.db` file from your docker volumes to a safe location. For example: + To create a backup of your database, you can run the following command: ```bash - docker compose down - docker cp orca-hub:/data/hub.db ./hub_backup.db + docker compose exec hub /app/hub backup ``` + After running this command make sure to copy the created backup file and include it in your backup strategy. + For upgrading OrcaCD when using Docker, you just need to pull the latest image and restart the services: ```bash -docker compose pull -docker compose up -d +docker compose pull && docker compose up -d ``` From a7d2d976f1890dfd438bc6edd95db2871974d3ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20K=C3=B6ssler?= Date: Sun, 3 May 2026 11:19:34 +0200 Subject: [PATCH 2/2] fix: Format --- .github/dependabot.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/dependabot.yml b/.github/dependabot.yml index 0f6a4f8..b21904f 100644 --- a/.github/dependabot.yml +++ b/.github/dependabot.yml @@ -10,8 +10,8 @@ updates: labels: - "dependencies" open-pull-requests-limit: 5 - cooldown: - default-days: 2 + cooldown: + default-days: 2 groups: dependencies: patterns: