From bf837a4fb0593457be5e3c70278cf7d3e1a4d586 Mon Sep 17 00:00:00 2001 From: hex2077 Date: Sun, 5 Oct 2025 23:14:56 +0800 Subject: [PATCH] =?UTF-8?q?chore(config):=20=E6=B7=BB=E5=8A=A0=E9=85=8D?= =?UTF-8?q?=E7=BD=AE=E5=8D=B7=E6=98=A0=E5=B0=84=E5=88=B0docker-compose.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 为podcast-server服务添加了配置目录的卷映射,将主机的/opt/audio/config目录挂载到容器内的/app/config目录,以便于外部配置管理。 --- docker-compose.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/docker-compose.yml b/docker-compose.yml index 81097a5..1df05e3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -26,6 +26,7 @@ services: - "3100:8000" volumes: - /opt/audio/output:/app/server/output + - /opt/audio/config:/app/config restart: always container_name: podcast-server