feat: docker-compose.1panel.yml 支持本地构建
Some checks failed
CI / test (push) Has been cancelled
CI / golangci-lint (push) Has been cancelled

- 默认从本地代码构建镜像
- 保留官方镜像选项(注释)
- 支持二次开发场景
- 统一配置文件,无需维护多个版本
This commit is contained in:
huangzhenpc
2026-01-04 16:48:34 +08:00
parent 106d8d8e57
commit f7a5cee262

View File

@@ -9,7 +9,16 @@ services:
# Sub2API Application
# ===========================================================================
sub2api:
image: weishaw/sub2api:latest
# 方式1使用官方镜像快速部署
# image: weishaw/sub2api:latest
# 方式2从本地代码构建二次开发
build:
context: ../
dockerfile: Dockerfile
args:
- BUILD_TAGS=embed
image: sub2api:local
container_name: sub2api
restart: unless-stopped
ulimits: