-
Notifications
You must be signed in to change notification settings - Fork 9
/
docker-compose.yaml
42 lines (39 loc) · 915 Bytes
/
docker-compose.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
services:
search-webscraper-markdown:
build:
context: .
dockerfile: Dockerfile # This refers to your Python FastAPI Dockerfile
container_name: search-webscraper-markdown
ports:
- "8000:8000"
depends_on:
- searxng
- browserless
volumes:
- .:/app
searxng:
container_name: searxng
image: docker.io/searxng/searxng:latest
restart: unless-stopped
networks:
- default
ports:
- "8080:8080"
volumes:
- ./searxng:/etc/searxng:rw
browserless:
container_name: browserless
image: ghcr.io/browserless/chromium
restart: unless-stopped
networks:
- default
ports:
- "3000:3000"
environment:
- TOKEN=your_browserless_token_here # Replace with your actual token
- MAX_CONCURRENT_SESSIONS=10
- TIMEOUT=60000
- QUEUED=10
networks:
default:
driver: bridge