forked from arnaudjnn/web-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
39 lines (36 loc) · 784 Bytes
/
Copy pathdocker-compose.yml
File metadata and controls
39 lines (36 loc) · 784 Bytes
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
services:
redis:
image: redis:7-alpine
ports:
- "6379:6379"
searxng:
build: ./services/searxng
ports:
- "8080:8080"
environment:
- SEARXNG_SECRET_KEY=dev-secret-key
- SEARXNG_REDIS_URL=redis://redis:6379/0
- PROXY_URL=${PROXY_URL:-}
depends_on:
- redis
crawl4ai:
image: unclecode/crawl4ai:latest
ports:
- "11235:11235"
environment:
- CRAWL4AI_API_TOKEN=${CRAWL4AI_API_TOKEN:-}
web_tools:
build:
context: .
dockerfile: packages/api/Dockerfile
ports:
- "3000:3000"
environment:
- SEARXNG_URL=http://searxng:8080
- CRAWL4AI_URL=http://crawl4ai:11235
- PORT=3000
env_file:
- .env.local
depends_on:
- searxng
- crawl4ai