forked from theNetworkChuck/claude-phone
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdocker-compose.bridge.yml
More file actions
37 lines (33 loc) · 1.09 KB
/
docker-compose.bridge.yml
File metadata and controls
37 lines (33 loc) · 1.09 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
version: '3.8'
# ============================================================================
# Docker Compose Override for Bridge Mode (Mac Docker Desktop)
# ============================================================================
#
# Use this on Mac where host networking doesn't work correctly:
# docker compose -f docker-compose.yml -f docker-compose.bridge.yml up -d
#
# Or set in .env:
# COMPOSE_FILE=docker-compose.yml:docker-compose.bridge.yml
#
# IMPORTANT: You still need EXTERNAL_IP set to your Mac's LAN IP!
# ============================================================================
services:
drachtio:
network_mode: bridge
ports:
- "5060:5060/udp"
- "5060:5060/tcp"
- "9022:9022/tcp"
freeswitch:
network_mode: bridge
ports:
- "5080:5080/udp"
- "8021:8021/tcp"
# RTP port range - limited to 100 ports for ~50 concurrent calls
# WARNING: Don't map more ports - Docker creates a process per port
- "20000-20100:20000-20100/udp"
voice-app:
network_mode: bridge
ports:
- "3000:3000/tcp"
- "3001:3001/tcp"