Files
Scraperr/docker-compose.dev.yml
Jayden Pyles 031572325f
Some checks failed
Unit Tests / unit-tests (push) Has been cancelled
Unit Tests / cypress-tests (push) Has been cancelled
Unit Tests / success-message (push) Has been cancelled
Fix/UI and backend fixes (#67)
* chore: wip

* chore: wip

* chore: wip

* fix: cypress test

* chore: cleanup code
2025-05-11 17:33:29 -05:00

17 lines
452 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"