File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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 :
Original file line number Diff line number Diff 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
2021For 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```
You can’t perform that action at this time.
0 commit comments