Files
Scraperr/docker-compose.dev.yml
T
Jayden Pyles d3c6a3f6a3 feat: general rework (#32)
* feat: general rework [skip ci]

* feat: general rework [skip ci]

* feat: general rework [skip ci]

* feat: use csv [skip ci]

* feat: add testing [skip ci]

* fix: remove logging [skip ci]
2024-10-20 17:52:58 -05:00

23 lines
721 B
YAML

version: "3"
services:
scraperr:
command: ["npm", "run", "dev"]
labels:
- "traefik.enable=true"
- "traefik.http.routers.scraperr.rule=Host(`localhost`)"
- "traefik.http.routers.scraperr.entrypoints=web"
- "traefik.http.services.scraperr.loadbalancer.server.port=3000"
- "traefik.http.routers.scraperr.tls=false"
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:
ports:
- "8000:8000"
volumes:
- "$PWD/api:/project/api"