-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathcompose.yaml
More file actions
40 lines (37 loc) · 1.06 KB
/
Copy pathcompose.yaml
File metadata and controls
40 lines (37 loc) · 1.06 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
---
# yaml-language-server: $schema=https://raw.githubusercontent.com/compose-spec/compose-spec/master/schema/compose-spec.json
services:
searxng:
image: searxng/searxng@sha256:4f0db332041c372dfe238ec0540f53ac055ad15cff2e179235e7fe07f1a5271f
container_name: searxng
environment:
- PUID=${PUID:-1000}
- PGID=${PGID:-1000}
volumes:
- /etc/localtime:/etc/localtime:ro
- /docker/appdata/searxng:/etc/searxng
restart: unless-stopped
ports:
- "8081:8080"
open-terminal:
container_name: open-terminal
image: ghcr.io/open-webui/open-terminal:0.11.34
restart: unless-stopped
ports:
- 3001:8000
volumes:
- open-terminal:/home/user
environment:
- OPEN_TERMINAL_API_KEY=$OPEN_TERMINAL_API_KEY
mcphub:
container_name: mcphub
image: mirror.gcr.io/samanhappy/mcphub:0.12.12
restart: unless-stopped
ports:
- 3003:3000
environment:
- ADMIN_PASSWORD=$MCPHUB_ADMIN_PASSWORD
volumes:
- ./mcp_settings.json:/app/mcp_settings.json:rw
volumes:
open-terminal: