Looks like it github.com/linkwarden/linkwarden/issues/94#issuecâŚ
odious@lemmy.world â¨3⊠â¨weeks⊠ago
is it possible to use sqlite as db engine? Iâd like to avoid running yet another postgres container.
mitchty@lemmy.sdf.org â¨3⊠â¨weeks⊠ago
odious@lemmy.world â¨2⊠â¨weeks⊠ago
doesnât inspire confidence github.com/linkwarden/linkwarden/issues/94#issuecâŚ
southernbeaver@lemmy.world â¨3⊠â¨weeks⊠ago
Is it bad to have one central postgres for all your containers?
odious@lemmy.world â¨3⊠â¨weeks⊠ago
probably not.
itâs more work than using sqlite inside of the applicationâs container though.
stephen01king@lemmy.zip â¨3⊠â¨weeks⊠ago
How easy is setting up an sqlite container as opposed to just connecting to an existing postgres container network? Genuine question since Iâve never tried using sqlite before.
mitchty@lemmy.sdf.org â¨3⊠â¨weeks⊠ago
SQLite doesnât need a networked setup at all. What the poster above is asking is an option for linkwarden to just use embedded SQLite as its db engine. For apps I build I just embed SQLite into the binary, no db network needed, the binary just sets up a db file at startup in say ~/.config/app/db.file and off to the races. If you donât need to access it from multiple contexts SQLite is hard to beat.