mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
26 lines
944 B
Markdown
26 lines
944 B
Markdown
|
# Quickstart with docker compose
|
||
|
|
||
|
You can start ZITADEL with a simple docker compose up.
|
||
|
|
||
|
The services are configured to restart if an error occurs.
|
||
|
|
||
|
In the following script the basic setup of the database is executed before ZITADEL starts. Execute the statement from the root of ZITADEL.
|
||
|
|
||
|
You can connect to [ZITADEL on localhost:4200](http://localhost:4200) as soon as the following text appears:
|
||
|
|
||
|
```text
|
||
|
++=========++
|
||
|
|| ZITADEL ||
|
||
|
|| STARTED ||
|
||
|
++=========++
|
||
|
```
|
||
|
|
||
|
```bash
|
||
|
COMPOSE_DOCKER_CLI_BUILD=1 DOCKER_BUILDKIT=1 \
|
||
|
&& docker-compose -f ./build/local/docker-compose-local.yml --profile database -p zitadel up --exit-code-from db-migrations \
|
||
|
&& sleep 5 \
|
||
|
&& docker-compose -f ./build/local/docker-compose-local.yml --profile database --profile init-backend --profile init-frontend --profile backend --profile frontend --profile setup -p zitadel up
|
||
|
```
|
||
|
|
||
|
For a more detailed guide take a look at the [development guide](./development.md)
|