diff options
| author | Bobby <[email protected]> | 2026-02-11 14:53:34 +0530 |
|---|---|---|
| committer | Bobby <[email protected]> | 2026-02-11 14:53:34 +0530 |
| commit | 3360be86fb6a595659c17f272d0c6072e512c154 (patch) | |
| tree | 4b78aa8120909b596f219a0159a3532200a05b1a /toolchain | |
| parent | d87e08e0fc5911b2ff40604944448e1f0aaa31b7 (diff) | |
| download | cafe-3360be86fb6a595659c17f272d0c6072e512c154.tar.xz cafe-3360be86fb6a595659c17f272d0c6072e512c154.zip | |
Implement OpenID authentication flow, including user session management and user info retrieval
Diffstat (limited to 'toolchain')
| -rw-r--r-- | toolchain/docker-compose.dev.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/toolchain/docker-compose.dev.yml b/toolchain/docker-compose.dev.yml index caba96a..f87ea5a 100644 --- a/toolchain/docker-compose.dev.yml +++ b/toolchain/docker-compose.dev.yml @@ -5,13 +5,13 @@ services: ports: - "5432:5432" environment: - POSTGRES_DB: cafe_dev - POSTGRES_USER: cafe_dev - POSTGRES_PASSWORD: dev_password + POSTGRES_DB: cafe + POSTGRES_USER: cafe + POSTGRES_PASSWORD: cafe volumes: - postgres_dev_data:/var/lib/postgresql/data healthcheck: - test: ["CMD-SHELL", "pg_isready -U cafe_dev"] + test: ["CMD-SHELL", "pg_isready -U cafe"] interval: 5s timeout: 3s retries: 5 |
