mirror of
https://github.com/louislam/uptime-kuma.git
synced 2025-06-03 03:52:35 +02:00
11 lines
192 B
Markdown
11 lines
192 B
Markdown
# LOCAL SETUP DOCKER
|
|
|
|
## commands list
|
|
|
|
```bash
|
|
docker run -it --rm -v $PWD:/code -w /code -p 3001:3001 node:20.4 /bin/bash
|
|
# inside the container
|
|
npm ci
|
|
npm run download-dist
|
|
npm run dev
|
|
```
|