mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-27 18:20:51 +00:00

* docs: improve template handling for search results * chore: remove draft again * chore: change configure
19 lines
666 B
Plaintext
19 lines
666 B
Plaintext
import CodeBlock from '@theme/CodeBlock';
|
|
import DockerComposeSource from '!!raw-loader!./docker-compose.yaml'
|
|
|
|
The setup is tested against Docker version 20.10.17 and Docker Compose version v2.2.3
|
|
|
|
By executing the commands below, you will download the following file:
|
|
|
|
<details><summary>docker-compose.yaml</summary>
|
|
<CodeBlock language="yaml">{DockerComposeSource}</CodeBlock>
|
|
</details>
|
|
|
|
```bash
|
|
# Download the docker compose example configuration. For example:
|
|
wget https://raw.githubusercontent.com/zitadel/zitadel/v2-alpha/docs/docs/guides/installation/run/docker-compose.yaml
|
|
|
|
# Run the database and application containers
|
|
docker compose up --detach
|
|
```
|