The Trans Directory
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix(docker): instructions + bump deps + bind mount (#1809)

* fix docker

* test with docs folder

authored by

Jacky Zhao and committed by
GitHub
a2011054 cc9704be

+5 -5
+1 -1
.github/workflows/ci.yaml
··· 45 45 run: npm test 46 46 47 47 - name: Ensure Quartz builds, check bundle info 48 - run: npx quartz build --bundleInfo 48 + run: npx quartz build --bundleInfo -d docs 49 49 50 50 publish-tag: 51 51 if: ${{ github.repository == 'jackyzha0/quartz' && github.ref == 'refs/heads/v4' }}
+2 -2
Dockerfile
··· 1 - FROM node:20-slim AS builder 1 + FROM node:22-slim AS builder 2 2 WORKDIR /usr/src/app 3 3 COPY package.json . 4 4 COPY package-lock.json* . 5 5 RUN npm ci 6 6 7 - FROM node:20-slim 7 + FROM node:22-slim 8 8 WORKDIR /usr/src/app 9 9 COPY --from=builder /usr/src/app/ /usr/src/app/ 10 10 COPY . .
+1 -1
docs/features/Docker Support.md
··· 3 3 You can run the below one-liner to run Quartz in Docker. 4 4 5 5 ```sh 6 - docker run --rm -itp 8080:8080 $(docker build -q .) 6 + docker run --rm -itp 8080:8080 -p 3001:3001 -v ./content:/usr/src/app/content $(docker build -q .) 7 7 ```
+1 -1
quartz/bootstrap-cli.mjs
··· 1 - #!/usr/bin/env node --no-deprecation 1 + #!/usr/bin/env -S node --no-deprecation 2 2 import yargs from "yargs" 3 3 import { hideBin } from "yargs/helpers" 4 4 import {