-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
70 lines (65 loc) · 1.63 KB
/
Copy pathdocker-compose.yml
File metadata and controls
70 lines (65 loc) · 1.63 KB
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
version: "3.9"
services:
searxng:
image: searxng/searxng:latest
container_name: searxng
restart: unless-stopped
ports:
- "8080:8080"
volumes:
- ./searxng:/etc/searxng:ro
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8080/"]
interval: 30s
timeout: 5s
retries: 3
qdrant:
image: qdrant/qdrant:latest
container_name: qdrant
restart: unless-stopped
ports:
- "${QDRANT_BIND:-<ip-address>}:6333:6333"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:6333/"]
interval: 30s
timeout: 5s
retries: 3
honcho:
image: ${HONCHO_IMAGE:-ghcr.io/onebyjorah/honcho:latest}
container_name: honcho
restart: unless-stopped
ports:
- "8081:8081"
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:8081/api/healthz"]
interval: 30s
timeout: 5s
retries: 3
obsidian:
image: caddy:2-alpine
container_name: obsidian
restart: unless-stopped
ports:
- "8083:80"
volumes:
- ${OBSIDIAN_VAULT_PATH:-./obsidian}:/usr/share/caddy
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:80/"]
interval: 30s
timeout: 5s
retries: 3
webautomation:
image: selenium/standalone-chrome:latest
container_name: webautomation
restart: unless-stopped
ports:
- "4444:4444"
- "${SELENIUM_VNC_BIND:-<ip-address>}:5900:5900"
shm_size: "2g"
environment:
- SE_NO_SANDBOX=1
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:4444/status"]
interval: 30s
timeout: 5s
retries: 3