feat: docker support for v4 (closes #530)

This commit is contained in:
Jacky Zhao
2023-10-08 09:59:18 -07:00
parent 38db1fd55d
commit 61a45e25de
3 changed files with 19 additions and 1 deletions

View File

@ -0,0 +1,7 @@
Quartz comes shipped with a Docker image that will allow you to preview your Quartz locally without installing Node.
You can run the below one-liner to run Quartz in Docker.
```sh
docker run --rm -itp 8080:8080 $(docker build -q .)
```