-
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathcompose.dev.yml
85 lines (81 loc) · 1.92 KB
/
compose.dev.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
services:
redis:
hostname: redis
image: docker.io/valkey/valkey:8-alpine
command: valkey-server --save 30 1 --loglevel warning
restart: unless-stopped
healthcheck:
test: "[ $$(valkey-cli ping) = 'PONG' ]"
start_period: 5s
timeout: 3s
interval: 1s
retries: 5
volumes:
- valkey-data:/data
cap_drop:
- ALL
cap_add:
- SETGID
- SETUID
- DAC_OVERRIDE
searxng:
hostname: searxng
depends_on:
redis:
condition: service_healthy
healthcheck:
test: "wget http://searxng:8080/healthz -q -O - | cat - || exit 1"
start_period: 5s
timeout: 3s
interval: 1s
retries: 5
image: docker.io/searxng/searxng:latest
restart: unless-stopped
ports:
- "8080:8080"
volumes:
- ./deploy/docker/searxng/settings.yml:/etc/searxng/settings.yml:ro
- ./deploy/docker/searxng/limiter.toml:/etc/searxng/limiter.toml:ro
environment:
- SEARXNG_BASE_URL=http://searxng:8080/
- UWSGI_WORKERS=${SEARXNG_UWSGI_WORKERS:-4}
- UWSGI_THREADS=${SEARXNG_UWSGI_THREADS:-4}
cap_drop:
- ALL
cap_add:
- CHOWN
- SETGID
- SETUID
init_db:
image: postgres:16-alpine
volumes:
- pgdata:/var/lib/postgresql/data
entrypoint:
- sh
- -c
- |
chown -R 2000:2000 /var/lib/postgresql/data
postgres:
image: postgres:16-alpine
depends_on:
init_db:
condition: service_completed_successfully
restart: unless-stopped
volumes:
- pgdata:/var/lib/postgresql/data
healthcheck:
test: "pg_isready -d postgres -U postgres -h localhost"
interval: 10s
timeout: 60s
retries: 5
start_period: 20s
ports:
- "5432:5432"
environment:
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
- POSTGRES_DB=postgres
user: "2000"
volumes:
pgdata:
valkey-data: