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
35 lines
791 B
YAML
35 lines
791 B
YAML
services:
|
|
scraperr:
|
|
image: jpyles0524/scraperr:1.0.13
|
|
build:
|
|
context: .
|
|
dockerfile: docker/frontend/Dockerfile
|
|
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
|
|
build:
|
|
context: .
|
|
dockerfile: docker/api/Dockerfile
|
|
environment:
|
|
- LOG_LEVEL=INFO
|
|
container_name: scraperr_api
|
|
ports:
|
|
- 8000:8000
|
|
volumes:
|
|
- "$PWD/data:/project/app/data"
|
|
- "$PWD/media:/project/app/media"
|
|
networks:
|
|
- web
|
|
|
|
networks:
|
|
web:
|