go_digital_backend/docker-compose.yml
Song367 a632bc7332
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 4m45s
修改dockerfile
2025-06-18 13:23:08 +08:00

12 lines
224 B
YAML

version: '3.8'
services:
app:
build: .
ports:
- "8080:8080" # Go 服务端口
volumes:
- ./audio:/app/audio # 挂载音频目录
environment:
- GO_PORT=8080
restart: unless-stopped