-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
56 lines (53 loc) · 1.3 KB
/
docker-compose.yml
File metadata and controls
56 lines (53 loc) · 1.3 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
name: monorepo
services:
caelundas:
build:
context: .
dockerfile: applications/caelundas/Dockerfile
image: caelundas
container_name: caelundas
open-webui:
image: ghcr.io/open-webui/open-webui:main
container_name: open-webui
ports:
- 3001:8080
volumes:
- open-webui_data:/app/backend/data
environment:
OLLAMA_BASE_URL: http://host.docker.internal:11434
ENABLE_WEBSOCKET_SUPPORT: "false"
healthcheck:
test: [CMD, curl, -f, http://localhost:8080/health]
interval: 30s
timeout: 10s
retries: 5
start_period: 60s
logging:
driver: json-file
options:
max-size: 10m
max-file: "3"
restart: unless-stopped
searxng:
image: searxng/searxng:latest
container_name: searxng
ports:
- 8889:8080
volumes:
- ${LOCAL_WORKSPACE_FOLDER}/applications/affirmations/searxng.settings.yml:/etc/searxng/settings.yml
environment:
SEARXNG_BASE_URL: http://localhost:8889
healthcheck:
test: [CMD, wget, -qO-, http://localhost:8080/]
interval: 30s
timeout: 10s
retries: 3
start_period: 15s
logging:
driver: json-file
options:
max-size: 10m
max-file: "3"
restart: unless-stopped
volumes:
open-webui_data: