-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yaml
More file actions
39 lines (36 loc) · 841 Bytes
/
docker-compose.yaml
File metadata and controls
39 lines (36 loc) · 841 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:
searxng:
build:
context: .
dockerfile: searxng.dockerfile
container_name: perplexify-searxng-1
environment:
- SEARXNG_BOTDETECTION_ENABLED=false
ports:
- 4000:8080
networks:
- perplexify-network
restart: unless-stopped
app:
# Build from local Dockerfile and code
build:
context: .
dockerfile: app.dockerfile
container_name: perplexify-app-1
environment:
- SEARXNG_API_URL=http://searxng:8080
- DATA_DIR=/home/perplexify
- NODE_ENV=${NODE_ENV:-development}
ports:
- 3000:3000
networks:
- perplexify-network
volumes:
- backend-dbstore:/home/perplexify/data
- uploads:/home/perplexify/uploads
restart: unless-stopped
networks:
perplexify-network:
volumes:
backend-dbstore:
uploads: