-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathcompose.yaml
More file actions
79 lines (75 loc) · 2.07 KB
/
Copy pathcompose.yaml
File metadata and controls
79 lines (75 loc) · 2.07 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
71
72
73
74
75
76
77
78
79
---
# yaml-language-server: $schema=https://raw.githubusercontent.com/compose-spec/compose-spec/master/schema/compose-spec.json
services:
ollama:
image: ollama/ollama:0.20.2
container_name: ollama
restart: unless-stopped
volumes:
- ollama:/root/.ollama
ports:
- "11434:11434"
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: all
capabilities: [gpu]
open-webui:
image: ghcr.io/open-webui/open-webui:v0.8.12
container_name: open-webui
restart: unless-stopped
ports:
- 3000:8080
volumes:
- open-webui:/app/backend/data
environment:
- ENABLE_OAUTH_SIGNUP=true
- OAUTH_MERGE_ACCOUNTS_BY_EMAIL=true
- OAUTH_PROVIDER_NAME=Authentik
- OPENID_PROVIDER_URL=https://auth.mafyuh.io/application/o/open-webui/.well-known/openid-configuration
- OAUTH_CLIENT_ID=$OAUTH_CLIENT_ID
- OAUTH_CLIENT_SECRET=$OAUTH_CLIENT_SECRET
- OAUTH_SCOPES=openid email profile
- OPENID_REDIRECT_URI=https://ai.mafyuh.io/oauth/oidc/callback
extra_hosts:
- host.docker.internal:host-gateway
searxng:
image: searxng/searxng@sha256:4d7ed8b7035ecf827bd901ba6d32f5c32d8119bc09bb3cdafeb0ce58f1b951c1
container_name: searxng
environment:
- PUID=${PUID:-1000}
- PGID=${PGID:-1000}
volumes:
- /etc/localtime:/etc/localtime:ro
- /etc/timezone:/etc/timezone:ro
- /docker/appdata/searxng:/etc/searxng
depends_on:
- ollama
- open-webui
restart: unless-stopped
ports:
- "8081:8080"
subgen:
container_name: subgen
tty: true
image: mccloud/subgen:2026.03.8
environment:
- "WHISPER_MODEL=medium"
- "WHISPER_THREADS=4"
- "PROCADDEDMEDIA=true"
volumes:
- "/docker/appdata/whisper/subgen/models:/subgen/models"
ports:
- "9000:9000"
deploy:
resources:
reservations:
devices:
- driver: nvidia
count: all
capabilities: [gpu]
volumes:
ollama:
open-webui: