mirror of
https://github.com/mleem97/gregWiki.git
synced 2026-04-10 19:19:18 +02:00
- Add docker-compose.yml (build context .) and .gitattributes for entrypoint LF - README: document docker compose and gregWiki root requirement - package.json: include docker-compose.yml in npm run format Made-with: Cursor
12 lines
304 B
YAML
12 lines
304 B
YAML
# Run from this directory (gregWiki repo root): docker compose up --build
|
|
# Wrong context (e.g. monorepo parent) causes: ENOENT /app/package.json
|
|
services:
|
|
wiki:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
ports:
|
|
- '3000:3000'
|
|
environment:
|
|
CHOKIDAR_USEPOLLING: 'true'
|