mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 02:54:20 +00:00
1c354ca977
* pipeline runs on ubuntu instead of docker * added Makefile to build zitadel core (backend) and console (frontend) * pipeline runs in parallel where possible * pipeline is split into multiple jobs * removed goreleaser * added command to check if zitadel instance is running
49 lines
1.1 KiB
YAML
49 lines
1.1 KiB
YAML
version: '3.8'
|
|
|
|
services:
|
|
|
|
db:
|
|
extends:
|
|
file: '../localhost/docker-compose.yaml'
|
|
service: 'db'
|
|
|
|
zitadel:
|
|
depends_on:
|
|
db:
|
|
condition: 'service_healthy'
|
|
extends:
|
|
file: '../localhost/docker-compose.yaml'
|
|
service: 'zitadel'
|
|
volumes:
|
|
- ./zitadel.yaml:/zitadel.yaml
|
|
|
|
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://zitadel:8080/debug/ready"'
|
|
|
|
e2e:
|
|
image: cypress/included:12.2.0
|
|
depends_on:
|
|
zitadel:
|
|
condition: 'service_started'
|
|
db:
|
|
condition: 'service_healthy'
|
|
prepare:
|
|
condition: 'service_completed_successfully'
|
|
working_dir: /e2e
|
|
user: '$UID'
|
|
volumes:
|
|
- ../../:/e2e
|
|
environment:
|
|
CYPRESS_BASE_URL: http://host.docker.internal:8080/ui/console
|
|
CYPRESS_WEBHOOK_HANDLER_HOST: host.docker.internal
|
|
CYPRESS_DATABASE_CONNECTION_URL: 'postgresql://root@db:26257/zitadel'
|
|
ports:
|
|
- "8900:8900"
|
|
extra_hosts:
|
|
- "host.docker.internal:host-gateway"
|