13 lines
356 B
YAML
13 lines
356 B
YAML
services:
|
|
realtime_voice:
|
|
build:
|
|
context: .
|
|
dockerfile: Dockerfile
|
|
container_name: realtime_voice
|
|
env_file:
|
|
- .env
|
|
ports:
|
|
- "${REALTIME_VOICE_HTTP_PORT:-8000}:${REALTIME_VOICE_HTTP_PORT:-8000}"
|
|
- "${REALTIME_VOICE_AUDIOSOCKET_PORT:-9092}:${REALTIME_VOICE_AUDIOSOCKET_PORT:-9092}"
|
|
restart: unless-stopped
|