14 lines
294 B
YAML
14 lines
294 B
YAML
version: '3.8'
|
|
|
|
services:
|
|
app:
|
|
build: .
|
|
ports:
|
|
- "8000:8000" # Python 文件服务器端口
|
|
- "8080:8080" # Go 服务端口
|
|
volumes:
|
|
- ./audio:/app/audio # 挂载音频目录
|
|
environment:
|
|
- PORT=8000
|
|
- GO_PORT=8080
|
|
restart: unless-stopped |