mirror of
https://github.com/jaypyles/Scraperr.git
synced 2026-05-04 08:20:40 +00:00
28de0f362c
* feat: add recording viewer and vnc * feat: add recording viewer and vnc * feat: add recording viewer and vnc * feat: add recording viewer and vnc * chore: update gitignore [skip ci] * chore: update dev compose [skip ci] * fix: only run manually
19 lines
483 B
YAML
19 lines
483 B
YAML
version: "3"
|
|
services:
|
|
scraperr:
|
|
command: ["npm", "run", "dev"]
|
|
volumes:
|
|
- "$PWD/src:/app/src"
|
|
- "$PWD/public:/app/public"
|
|
- "$PWD/next.config.mjs:/app/next.config.mjs"
|
|
- "$PWD/package.json:/app/package.json"
|
|
- "$PWD/package-lock.json:/app/package-lock.json"
|
|
- "$PWD/tsconfig.json:/app/tsconfig.json"
|
|
scraperr_api:
|
|
environment:
|
|
- LOG_LEVEL=INFO
|
|
volumes:
|
|
- "$PWD/api:/project/app/api"
|
|
ports:
|
|
- "5900:5900"
|