mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 19:44:21 +00:00
60688757fa
* test(postgres): always test against latest * Update CONTRIBUTING.md Co-authored-by: Tim Möhlmann <tim+github@zitadel.com> * Update internal/integration/config/docker-compose.yaml Co-authored-by: Tim Möhlmann <tim+github@zitadel.com> --------- Co-authored-by: Tim Möhlmann <tim+github@zitadel.com>
25 lines
512 B
YAML
25 lines
512 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
cockroach:
|
|
extends:
|
|
file: '../../../e2e/config/localhost/docker-compose.yaml'
|
|
service: 'db'
|
|
|
|
postgres:
|
|
restart: 'always'
|
|
image: 'postgres:latest'
|
|
environment:
|
|
- POSTGRES_USER=zitadel
|
|
- PGUSER=zitadel
|
|
- POSTGRES_DB=zitadel
|
|
- POSTGRES_HOST_AUTH_METHOD=trust
|
|
healthcheck:
|
|
test: ["CMD-SHELL", "pg_isready"]
|
|
interval: '10s'
|
|
timeout: '30s'
|
|
retries: 5
|
|
start_period: '20s'
|
|
ports:
|
|
- 5432:5432
|