-
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from sebadob/doc-split-container-images
document split container images from v0.14 on
- Loading branch information
Showing
7 changed files
with
72 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,15 @@ | ||
# Getting Started | ||
|
||
```admonish hint | ||
Rauthy `v0.14` and beyond uses differnt container images for the different target databases. | ||
Until and including `v0.13`, rauthy used the `Any` driver from [sqlx](https://crates.io/crates/sqlx). However, this | ||
driver has quite a few problems since sqlx 0.7, and I decided to migrate away from it, because the future of it seems | ||
too uncertain to me. | ||
``` | ||
|
||
- The "normal" container images can be used for Postgres | ||
- The `*-lite` images use an embedded SQLite | ||
- The `DB_MIGRATE_FROM` (explained later) can be used with any combination of image / database | ||
|
||
At the time of writing, you can run Rauthy either with [Docker](./docker.md) or inside [Kubernetes](./k8s.md). | ||
|