mirror of
https://github.com/zitadel/zitadel
synced 2024-11-22 18:44:40 +00:00
51febd7e4e
* add specs that cover the b2b demo * update cypress * test handling manager roles * use shared mocha contexts * use beforeEach instead of before * improve readability * improve application test * remove static waits * remove old awaitDesired * test owned project authorizations * simplify ensure.ts * test granted projects authz * disable prevSubject for shouldNotExist * await non-existence, then expect no error * update dependencies * fix tests from scratch * fix settings tests from scratch * Apply suggestions from code review Co-authored-by: Max Peintner <max@caos.ch> * Implement code review suggestions * use spread operator * settings properties must match * add check settings object * revert spread operator Co-authored-by: Max Peintner <max@caos.ch>
62 lines
1.4 KiB
YAML
62 lines
1.4 KiB
YAML
version: '3.8'
|
|
|
|
services:
|
|
zitadel:
|
|
restart: 'always'
|
|
image: '${ZITADEL_IMAGE:-ghcr.io/zitadel/zitadel:latest}'
|
|
command: 'start-from-init --masterkey "MasterkeyNeedsToHave32Characters" --tlsMode disabled'
|
|
environment:
|
|
ZITADEL_EXTERNALSECURE: false
|
|
ZITADEL_DATABASE_COCKROACH_HOST: db
|
|
|
|
depends_on:
|
|
db:
|
|
condition: 'service_healthy'
|
|
ports:
|
|
- '8080:8080'
|
|
networks:
|
|
- zitadel
|
|
|
|
db:
|
|
restart: 'always'
|
|
image: 'cockroachdb/cockroach:v22.1.0'
|
|
command: 'start-single-node --insecure --http-addr :9090'
|
|
healthcheck:
|
|
test: ['CMD', 'curl', '-f', 'http://localhost:9090/health?ready=1']
|
|
interval: '10s'
|
|
timeout: '30s'
|
|
retries: 5
|
|
start_period: '20s'
|
|
ports:
|
|
- '9090:8080'
|
|
- '26257:26257'
|
|
networks:
|
|
- zitadel
|
|
|
|
prepare:
|
|
image: node:18-alpine3.15
|
|
working_dir: /e2e
|
|
user: '$UID'
|
|
volumes:
|
|
- .:/e2e
|
|
command: 'sh -c "npm ci --omit=dev && npm run lint && npx wait-on http://localhost:8080/debug/ready"'
|
|
network_mode: host
|
|
|
|
e2e:
|
|
image: cypress/included:10.9.0
|
|
depends_on:
|
|
zitadel:
|
|
condition: 'service_started'
|
|
db:
|
|
condition: 'service_healthy'
|
|
prepare:
|
|
condition: 'service_completed_successfully'
|
|
working_dir: /e2e
|
|
user: '$UID'
|
|
volumes:
|
|
- .:/e2e
|
|
network_mode: host
|
|
|
|
networks:
|
|
zitadel:
|