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

45 lines
805 B
YAML

version: '3'
services:
tl-rtc-file-api-local:
profiles: ['local']
env_file:
- local.env
build:
context: ../
dockerfile: ./Dockerfile
ports:
- 9092:9092
command: localapi
tl-rtc-file-socket-local:
profiles: ['local']
env_file:
- local.env
build:
context: ../
dockerfile: ./Dockerfile
ports:
- 8444:8444
command: localsocket
tl-rtc-file-api-server:
profiles: ['server']
env_file:
- server.env
build:
context: ../
dockerfile: ./Dockerfile
ports:
- 9092:9092
command: serverapi
tl-rtc-file-socket-server:
profiles: ['server']
env_file:
- server.env
build:
context: ../
dockerfile: ./Dockerfile
ports:
- 8444:8444
command: serversocket