mirror of
https://github.com/zitadel/zitadel.git
synced 2025-06-07 22:08:32 +00:00
38 lines
882 B
YAML
38 lines
882 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
zitadel:
|
|
restart: 'always'
|
|
networks:
|
|
- 'zitadel'
|
|
image: 'ghcr.io/zitadel/zitadel:latest'
|
|
command: 'start-from-init --masterkey "MasterkeyNeedsToHave32Characters" --tlsMode disabled'
|
|
environment:
|
|
- 'ZITADEL_DATABASE_COCKROACH_HOST=crdb'
|
|
- 'ZITADEL_EXTERNALSECURE=false'
|
|
- 'ZITADEL_ANALYTICS_PUSH_ALLENABLED=true'
|
|
depends_on:
|
|
crdb:
|
|
condition: 'service_healthy'
|
|
ports:
|
|
- '8080:8080'
|
|
|
|
crdb:
|
|
restart: 'always'
|
|
networks:
|
|
- 'zitadel'
|
|
image: 'cockroachdb/cockroach:v22.2.2'
|
|
command: 'start-single-node --insecure'
|
|
healthcheck:
|
|
test: ["CMD", "curl", "-f", "http://localhost:8080/health?ready=1"]
|
|
interval: '10s'
|
|
timeout: '30s'
|
|
retries: 5
|
|
start_period: '20s'
|
|
ports:
|
|
- '9090:8080'
|
|
- '26257:26257'
|
|
|
|
networks:
|
|
zitadel:
|