feat(15-01): add Logto service to Docker Compose and create init script

- Add Logto OIDC provider to docker-compose.yml and docker-compose.dev.yml
- Create docker/init-logto-db.sql to initialize separate Logto database on Postgres
- Add OIDC env vars (issuer, client ID/secret, auth secret) to app service
- Document all required env vars in .env.example
This commit is contained in:
2026-04-04 20:37:57 +02:00
parent f7c9f3dc94
commit 625862f5ae
11 changed files with 2053 additions and 0 deletions

2
docker/init-logto-db.sql Normal file
View File

@@ -0,0 +1,2 @@
-- Creates a separate database for Logto on the shared Postgres instance
CREATE DATABASE logto;