2
0
mirror of https://github.com/inventree/inventree-website.git synced 2026-03-07 12:04:17 +00:00

Tweak blog post / update polar links (#261)

* Tweak blog post

* Fix polar.sh links :'(
This commit is contained in:
Oliver
2026-02-17 00:22:58 +11:00
committed by GitHub
parent 55c9afcf06
commit a47ae7aa75
8 changed files with 12 additions and 8 deletions

View File

@@ -144,7 +144,6 @@ If you or your company uses InvenTree, please consider sponsoring the project to
A friendly reminder that the majority of the work undertaken to keep InvenTree running is done by a very small group of core developers, who do so in their spare time (and are not sponsored by their employers to work on InvenTree). If you benefit from the InvenTree project, please consider contributing to maintain vibrant development of this software!
- [Polar.sh](https://polar.sh/inventree)
- [GitHub](https://github.com/sponsors/inventree)
- [PayPal](https://paypal.me/inventree?locale.x=en_AU)

View File

@@ -148,5 +148,4 @@ Sponsorships help to keep this project sustainable, and buys time for the core d
The work undertaken to keep InvenTree running is done by a very small group of core developers, who do so in their spare time (and are not sponsored by their employers to work on InvenTree). If you benefit from the InvenTree project, please consider contributing to maintain vibrant development of this software!
- [Polar.sh](https://polar.sh/inventree)
- [GitHub](https://github.com/sponsors/inventree)

View File

@@ -299,7 +299,6 @@ Sponsorships help to keep this project sustainable, and buys time for the core d
The work undertaken to keep InvenTree running is done by a very small group of core developers, who do so in their spare time (and are not sponsored by their employers to work on InvenTree). If you benefit from the InvenTree project, please consider contributing to maintain vibrant development of this software!
- [Polar.sh](https://polar.sh/inventree)
- [GitHub](https://github.com/sponsors/inventree)
If you are using InvenTree in a commercial setting, please consider sponsoring the project to help support ongoing development and maintenance. Your support is greatly appreciated and helps to ensure that InvenTree remains a viable and sustainable project for years to come.

View File

@@ -79,7 +79,6 @@ Sponsorships help to keep this project sustainable, and buys time for the core d
The work undertaken to keep InvenTree running is done by a very small group of core developers, who do so in their spare time (and are not sponsored by their employers to work on InvenTree). If you benefit from the InvenTree project, please consider contributing to maintain vibrant development of this software!
- [Polar.sh](https://polar.sh/inventree)
- [GitHub](https://github.com/sponsors/inventree)
If you are using InvenTree in a commercial setting, please consider sponsoring the project to help support ongoing development and maintenance. Your support is greatly appreciated and helps to ensure that InvenTree remains a viable and sustainable project for years to come.

View File

@@ -95,7 +95,6 @@ Sponsorships help to keep this project sustainable, and buys time for the core d
The work undertaken to keep InvenTree running is done by a very small group of core developers, who do so in their spare time (and are not sponsored by their employers to work on InvenTree). If you benefit from the InvenTree project, please consider contributing to maintain vibrant development of this software!
- [Polar.sh](https://polar.sh/inventree)
- [GitHub](https://github.com/sponsors/inventree)
If you are using InvenTree in a commercial setting, please consider sponsoring the project to help support ongoing development and maintenance. Your support is greatly appreciated and helps to ensure that InvenTree remains a viable and sustainable project for years to come.

View File

@@ -51,10 +51,12 @@ First, let's confirm that we are running the expected version of InvenTree (1.1.
![Old Setup](/assets/blog/db_update_old_versions.png)
To perform the backup, we run the following command:
To perform the backup, we run the following commands:
```
docker compose up inventree-db -d
docker compose run --rm inventree-server invoke backup
docker compose down
```
This will create a backup of the database and media files in the `data/backup` directory.
@@ -88,8 +90,10 @@ docker compose pull
Now we can restore the data from the backup we created previously, into the new PostgreSQL 17 database. Run the following commands:
```
docker compose up inventree-db -d
docker compose run --rm inventree-server invoke migrate
docker compose run --rm inventree-server invoke restore
docker compose down
```
This will restore the database and media files from the backup we created previously.
@@ -109,6 +113,7 @@ docker compose pull
Next, run the InvenTree update procedure:
```
docker compose up inventree-db -d
docker compose run --rm inventree-server invoke update
```