-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.yml
More file actions
56 lines (53 loc) · 1.7 KB
/
Copy pathdocker-compose.yml
File metadata and controls
56 lines (53 loc) · 1.7 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
services:
claude-desktop-notification:
build:
context: ./claude-desktop-notification
args:
USER_GID: "${DEV_GID}"
network_mode: host
user: "${DEV_UID}:${DEV_GID}"
# Ubuntu's AppArmor userspace mediation for D-Bus blocks the session bus
# from Docker's default confined profile regardless of UID; this
# service's sole job is talking to that bus, so it runs unconfined.
security_opt:
- apparmor:unconfined
restart: unless-stopped
volumes:
- claude-desktop-notification-sock:/run/claude-desktop-notification
- /run/user/${DEV_UID}:/run/user/${DEV_UID}
- ${CLAUDE_DEVCONTAINER_HOME}/claude:/claude-assets:ro
environment:
- PULSE_SERVER=unix:/run/user/${DEV_UID}/pulse/native
- DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/${DEV_UID}/bus
mcp-context7:
build:
context: ./mcp-context7
args:
USER_UID: "${DEV_UID}"
USER_GID: "${DEV_GID}"
restart: unless-stopped
volumes:
- mcp-context7-sock:/run/mcp-context7
env_file:
- ${CONTEXT7_ENV_FILE} # Credentials - see scripts/lib/env.sh)
mcp-thiri:
build:
context: ./mcp-thiri
args:
USER_UID: "${DEV_UID}"
USER_GID: "${DEV_GID}"
restart: unless-stopped
volumes:
- mcp-thiri-sock:/run/mcp-thiri
env_file:
- ${THIRI_ENV_FILE} # Credentials - see scripts/lib/env.sh)
volumes:
# Socket for notification container communication
claude-desktop-notification-sock:
name: claude-desktop-notification-sock
# Socket for context7 container communication
mcp-context7-sock:
name: mcp-context7-sock
# Socket for thiri container communication
mcp-thiri-sock:
name: mcp-thiri-sock