Files
tl-rtc-file/docker-compose.yml
https://blog.iamtsm.cn 058346c627 feat: 更新部署脚本
2023-08-06 16:39:54 +08:00

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