Florian Forster 0ebda7caaa
docs: improve template handling for search results (#4043)
* docs: improve template handling for search results

* chore: remove draft again

* chore: change configure
2022-07-25 15:59:45 +02:00

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
```