docs(installation): improve guides (#3817)

* split config descriptions

* install and configure

* custom domains

* typo

* remove comments

* try compose with secure crdb

* secure crdb with compose

* describe ExternalSecure restriction

* add near production example

* add login credentials

* fix configure compose

* make the docs more transparent

* name archive amd64

* Revert "name archive amd64"

This reverts commit 0d4dae551b.

* fix download url

* extract archives

* fix dawin download

* fix start zitadel commands

* add helm installation docs

* remove windows

* make downloaded files description friendlier

* link to github raw

* link login process

* remove healthcheck from compose

* remove compose healthchecks

* use --tlsMode external for lb example

* uname -i

* disable tls mode locally

* Update docs/docs/guides/installation/get-started/macos.mdx

Co-authored-by: Fabi <38692350+hifabienne@users.noreply.github.com>

Co-authored-by: Fabi <38692350+hifabienne@users.noreply.github.com>
This commit is contained in:
Elio Bischof
2022-06-28 13:36:59 +02:00
committed by GitHub
parent fb0f29aa32
commit 6dd4af01bf
37 changed files with 754 additions and 187 deletions

View File

@@ -1,42 +0,0 @@
version: '3.8'
services:
zitadel:
restart: always
networks:
- zitadel
image: ghcr.io/zitadel/zitadel:v2.0.0-v2-alpha.33-amd64
command: start-from-init --masterkey "MasterkeyNeedsToHave32Characters" --tlsMode disabled
environment:
- ZITADEL_DATABASE_HOST=db
- ZITADEL_DEFAULTINSTANCE_CUSTOMDOMAIN=localhost
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/debug"]
interval: 10s
timeout: 30s
retries: 5
start_period: 40s
depends_on:
db:
condition: service_healthy
ports:
- 8080:8080
db:
restart: always
networks:
- zitadel
image: cockroachdb/cockroach:v22.1.0
command: start-single-node --insecure
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/health?ready=1"]
interval: 10s
timeout: 30s
retries: 5
start_period: 20s
ports:
- 9090:8080
- 26257:26257
networks:
zitadel: