mirror of
https://github.com/jaypyles/Scraperr.git
synced 2025-10-30 05:57:12 +00:00
* chore: refactor wip * chore: refactor wip * chore: refactor wip * chore: refactor wip * chore: refactor wip * chore: refactor wip * chore: work in progress * chore: work in progress * chore: work in progress * chore: work in progress * chore: work in progress * chore: work in progress * chore: work in progress * chore: work in progress * chore: work in progress * chore: refactor wip * chore: work in progress * chore: refactor wip * chore: refactor wip * chore: refactor wip * fix: build * fix: cypress test * fix: cypress test * fix: cypress test * fix: cypress test * fix: cypress test * fix: cypress test * fix: cypress test * fix: cypress test * fix: cypress tests * fix: cypress tests * fix: cypress tests * fix: cypress tests * fix: cypress tests * fix: cypress tests * fix: cypress tests * fix: cypress tests * fix: cypress tests * fix: cypress tests * fix: cypress tests * fix: cypress tests * fix: cypress tests * fix: cypress tests * fix: cypress tests * fix: cypress tests * fix: cypress tests
30 lines
683 B
YAML
30 lines
683 B
YAML
services:
|
|
scraperr:
|
|
image: jpyles0524/scraperr:latest
|
|
container_name: scraperr
|
|
command: ["npm", "run", "start"]
|
|
environment:
|
|
- NEXT_PUBLIC_API_URL=http://scraperr_api:8000 # your API URL
|
|
- SERVER_URL=http://scraperr_api:8000 # your docker container API URL
|
|
ports:
|
|
- 80:3000
|
|
networks:
|
|
- web
|
|
scraperr_api:
|
|
init: True
|
|
image: jpyles0524/scraperr_api:latest
|
|
environment:
|
|
- LOG_LEVEL=INFO
|
|
- OPENAI_KEY=${OPENAI_KEY}
|
|
container_name: scraperr_api
|
|
ports:
|
|
- 8000:8000
|
|
volumes:
|
|
- "$PWD/data:/project/app/data"
|
|
- "$PWD/media:/project/app/media"
|
|
networks:
|
|
- web
|
|
|
|
networks:
|
|
web:
|