-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
53 lines (53 loc) · 1.09 KB
/
docker-compose.yml
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
43
44
45
46
47
48
49
50
51
52
53
services:
perplexibot:
image: jpyles0524/perplexibot:latest
container_name: perplexibot
env_file: ./.env
environment:
- TOKEN=${TOKEN}
build:
context: "./"
networks:
- search
backend:
image: jpyles0524/freeaskinternetapi:latest
container_name: searchbackend
depends_on:
- searxng
restart: on-failure
networks:
- search
searxng:
image: docker.io/searxng/searxng:latest
volumes:
- ./searxng:/etc/searxng:rw
environment:
- SEARXNG_BASE_URL=https://${SEARXNG_HOSTNAME:-localhost}/
cap_drop:
- ALL
cap_add:
- CHOWN
- SETGID
- SETUID
logging:
driver: "json-file"
options:
max-size: "1m"
max-file: "1"
restart: always
networks:
- search
# ollama:
# image: ollama/ollama:latest
# ports:
# - 11434:11434
# container_name: ollama
# pull_policy: always
# tty: true
# restart: always
# networks:
# - search
networks:
search:
external:
name: search