24 lines
546 B
YAML
24 lines
546 B
YAML
|
# LiveKit requires host networking, which is only available on Linux
|
||
|
# This compose will not function correctly on Mac or Windows
|
||
|
version: "3.9"
|
||
|
|
||
|
networks:
|
||
|
lkbackend:
|
||
|
|
||
|
services:
|
||
|
call:
|
||
|
build:
|
||
|
context: ./
|
||
|
container_name: element-call-backend
|
||
|
ports:
|
||
|
- 8080:8080
|
||
|
- 8443:8443
|
||
|
deploy:
|
||
|
restart_policy:
|
||
|
condition: on-failure
|
||
|
networks:
|
||
|
- lkbackend
|
||
|
volumes:
|
||
|
- ./certs/element-call.crt:/etc/ssl/certs/element-call.crt
|
||
|
- ./certs/element-call.key:/etc/ssl/private/element-call.key
|