Skip to content

Commit c86eb4e

Browse files
authored
docs: New update command and dependabot cooldown (#29)
1 parent c7990d9 commit c86eb4e

2 files changed

Lines changed: 11 additions & 5 deletions

File tree

.github/dependabot.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@ updates:
1010
labels:
1111
- "dependencies"
1212
open-pull-requests-limit: 5
13+
cooldown:
14+
default-days: 2
1315
groups:
1416
dependencies:
1517
patterns:
@@ -25,6 +27,8 @@ updates:
2527
labels:
2628
- "dependencies"
2729
open-pull-requests-limit: 5
30+
cooldown:
31+
default-days: 2
2832
groups:
2933
dependencies:
3034
patterns:
@@ -40,6 +44,8 @@ updates:
4044
labels:
4145
- "dependencies"
4246
open-pull-requests-limit: 5
47+
cooldown:
48+
default-days: 2
4349
groups:
4450
dependencies:
4551
patterns:

content/docs/setup/upgrading.mdx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,18 +8,18 @@ description: Keep your OrcaCD installation up to date
88
and keeping a copy of your current `.env` and `docker-compose.yml` files. This gives you a
99
rollback path if something goes wrong.
1010

11-
To create a backup of your database, you can copy the `hub.db` file from your docker volumes to a safe location. For example:
11+
To create a backup of your database, you can run the following command:
1212

1313
```bash
14-
docker compose down
15-
docker cp orca-hub:/data/hub.db ./hub_backup.db
14+
docker compose exec hub /app/hub backup
1615
```
1716

17+
After running this command make sure to copy the created backup file and include it in your backup strategy.
18+
1819
</Callout>
1920

2021
For upgrading OrcaCD when using Docker, you just need to pull the latest image and restart the services:
2122

2223
```bash
23-
docker compose pull
24-
docker compose up -d
24+
docker compose pull && docker compose up -d
2525
```

0 commit comments

Comments
 (0)