mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-12 00:17:32 +00:00
chore: improve wording (#4545)
This commit is contained in:
@@ -20,7 +20,14 @@ yarn install
|
||||
yarn start
|
||||
```
|
||||
|
||||
This command starts a local development server and open up a browser window. Most changes are reflected live without having to restart the server.
|
||||
As an alternative you can use this docker compose command:
|
||||
|
||||
```console
|
||||
docker compose up
|
||||
```
|
||||
|
||||
These commands start a local development server.
|
||||
Most changes are reflected live without having to restart the server.
|
||||
|
||||
## Build
|
||||
|
||||
|
11
docs/docker-compose.yml
Normal file
11
docs/docker-compose.yml
Normal file
@@ -0,0 +1,11 @@
|
||||
version: '3'
|
||||
|
||||
services:
|
||||
docusaurus:
|
||||
image: node:lts-alpine3.15
|
||||
working_dir: /app
|
||||
volumes:
|
||||
- ./:/app
|
||||
ports:
|
||||
- 3000:3000
|
||||
command: sh -c "yarn install && yarn start --host 0.0.0.0"
|
Reference in New Issue
Block a user