mirror of
https://github.com/tl-open-source/tl-rtc-file.git
synced 2025-09-26 19:41:16 +08:00
41 lines
881 B
YAML
41 lines
881 B
YAML
version: '3'
|
|
services:
|
|
api-local:
|
|
profiles: ['local']
|
|
container_name: tl-rtc-file-api-local
|
|
image: iamtsm/tl-rtc-file-api-local
|
|
env_file:
|
|
- docker/local.env
|
|
ports:
|
|
- 9092:9092
|
|
command: localapi
|
|
|
|
socket-local:
|
|
profiles: ['local']
|
|
container_name: tl-rtc-file-socket-local
|
|
image: iamtsm/tl-rtc-file-socket-local
|
|
env_file:
|
|
- docker/local.env
|
|
ports:
|
|
- 8444:8444
|
|
command: localsocket
|
|
|
|
api-server:
|
|
profiles: ['server']
|
|
container_name: tl-rtc-file-api-server
|
|
image: iamtsm/tl-rtc-file-api-server
|
|
env_file:
|
|
- docker/server.env
|
|
ports:
|
|
- 9092:9092
|
|
command: serverapi
|
|
|
|
socket-server:
|
|
profiles: ['server']
|
|
container_name: tl-rtc-file-socket-server
|
|
image: iamtsm/tl-rtc-file-socket-server
|
|
env_file:
|
|
- docker/server.env
|
|
ports:
|
|
- 8444:8444
|
|
command: serversocket |