Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ updates:
labels:
- "dependencies"
open-pull-requests-limit: 5
cooldown:
default-days: 2
groups:
dependencies:
patterns:
Expand All @@ -25,6 +27,8 @@ updates:
labels:
- "dependencies"
open-pull-requests-limit: 5
cooldown:
default-days: 2
groups:
dependencies:
patterns:
Expand All @@ -40,6 +44,8 @@ updates:
labels:
- "dependencies"
open-pull-requests-limit: 5
cooldown:
default-days: 2
groups:
dependencies:
patterns:
Expand Down
10 changes: 5 additions & 5 deletions content/docs/setup/upgrading.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.

</Callout>

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
```