forked from wishonia/wishonia
-
Notifications
You must be signed in to change notification settings - Fork 1
/
docker-compose.yml
38 lines (35 loc) · 886 Bytes
/
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
version: "3.8"
services:
db:
image: ankane/pgvector:latest
restart: always
environment:
POSTGRES_USER: user
POSTGRES_PASSWORD: pass
POSTGRES_DB: wishonia_test
ports:
- "5433:5432"
container_name: wishonia-postgres
volumes:
- .postgres:/var/lib/postgresql/data
redis:
image: redis:alpine
container_name: redis
restart: unless-stopped
volumes:
- redis_data:/data
command: redis-server --appendonly yes
ports:
- "6379:6379"
searxng:
image: searxng/searxng
ports:
- '${SEARXNG_PORT:-8080}:8080'
env_file: .env.local # can remove if you want to use env variables or in settings.yml
volumes:
- ./searxng-limiter.toml:/etc/searxng/limiter.toml
- ./searxng-settings.yml:/etc/searxng/settings.yml
- searxng_data:/data
volumes:
redis_data:
searxng_data: