Files
ulthon_admin/source/stack/stack.json
augushong 58a9002c3a feat(stack): 新增 docker-dev 开发模式
- 新增 source/stack/docker-dev/Dockerfile: 基于 full 模式 + Xdebug + 开发 PHP 配置
- 新增 source/stack/docker-dev/docker-compose.yaml: 4 服务编排 (app/mysql/redis/phpmyadmin)
- 新增 source/stack/docker-dev/.docker-dev.env: 开发环境配置模板 (HOSTNAME=mysql, HOSTPORT=3306)
- 更新 source/stack/stack.json: 注册 docker-dev 模式, managed_files 增加 .docker-dev.env
- 更新 .gitignore: 排除 /docker-dev/ 数据目录
2026-04-29 23:35:27 +08:00

28 lines
663 B
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"default_mode": "default",
"managed_files": [
"Dockerfile",
"docker-compose.yaml",
".gitea/workflows/build-and-deploy.yml",
".docker-dev.env"
],
"modes": {
"default": {
"description": "代码库默认行为基线",
"author_only": false
},
"full": {
"description": "全量构建模式(兼容历史行为)",
"author_only": false
},
"base-build": {
"description": "基础镜像 + 应用构建模式",
"author_only": true
},
"docker-dev": {
"description": "Docker 开发模式nginx+php-fpm+MySQL+Redis+phpMyAdmin+Xdebug",
"author_only": false
}
}
}