mirror of
https://github.com/zitadel/zitadel
synced 2024-11-22 18:44:40 +00:00
11 lines
211 B
YAML
11 lines
211 B
YAML
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" |