diff --git a/apps/garage-hq/README.md b/apps/garage-hq/README.md index f349e34..c4a605e 100644 --- a/apps/garage-hq/README.md +++ b/apps/garage-hq/README.md @@ -1,14 +1,15 @@ -# APP_NAME +# Garage HQ -简短的介绍 +Garage 是一种与 S3 兼容的分布式对象存储服务,专为中小规模的自托管而设计。 -![APP_NAME](https://file.lifebus.top/imgs/app_name_cover.png) +![Garage HQ](https://file.lifebus.top/imgs/garage-hq_cover.png) ![](https://img.shields.io/badge/%E6%96%B0%E7%96%86%E8%90%8C%E6%A3%AE%E8%BD%AF%E4%BB%B6%E5%BC%80%E5%8F%91%E5%B7%A5%E4%BD%9C%E5%AE%A4-%E6%8F%90%E4%BE%9B%E6%8A%80%E6%9C%AF%E6%94%AF%E6%8C%81-blue) ## 简介 -XXXXXX +Garage 专为由运行在不同物理位置的节点组成的存储集群而设计,旨在轻松提供存储服务,该服务可在这些不同位置复制数据,即使某些服务器无法访问也能保持可用。Garage +还注重轻量级、易于操作以及对机器故障的高弹性。 --- diff --git a/apps/mdc-ng/1.17.3/.env b/apps/mdc-ng/1.18.0/.env similarity index 62% rename from apps/mdc-ng/1.17.3/.env rename to apps/mdc-ng/1.18.0/.env index 114b43f..c93da5a 100644 --- a/apps/mdc-ng/1.17.3/.env +++ b/apps/mdc-ng/1.18.0/.env @@ -4,6 +4,18 @@ MDC_NG_ROOT_PATH=/home/mdc-ng # WebUI 端口 [必填] PANEL_APP_PORT_HTTP=9208 +# 管理员用户名 [必填] +MDC_USERNAME=mdc-ng + +# 管理员密码 [必填] +MDC_PASSWORD=mdc-ng + +# 运行组 ID [必填] +PGID=0 + +# 运行用户 ID [必填] +PUID=0 + # 自定义挂载目录 1 CUSTOM_MOUNT_DIRECTORY_1= diff --git a/apps/mdc-ng/1.17.3/data.yml b/apps/mdc-ng/1.18.0/data.yml similarity index 60% rename from apps/mdc-ng/1.17.3/data.yml rename to apps/mdc-ng/1.18.0/data.yml index 6298b71..63946ba 100644 --- a/apps/mdc-ng/1.17.3/data.yml +++ b/apps/mdc-ng/1.18.0/data.yml @@ -15,6 +15,34 @@ additionalProperties: required: true rule: paramPort type: number + - default: "mdc-ng" + edit: true + envKey: MDC_USERNAME + labelZh: 管理员用户名 + labelEn: Amdin Username + required: true + type: text + - default: "mdc-ng" + edit: true + envKey: MDC_PASSWORD + labelZh: 管理员密码 + labelEn: Amdin Password + required: true + type: text + - default: 0 + edit: true + envKey: PGID + labelZh: 运行组 ID + labelEn: Run Group ID + required: true + type: number + - default: 0 + edit: true + envKey: PUID + labelZh: 运行用户 ID + labelEn: Run User ID + required: true + type: number - default: "" edit: true envKey: CUSTOM_MOUNT_DIRECTORY_1 diff --git a/apps/mdc-ng/1.17.3/docker-compose.yml b/apps/mdc-ng/1.18.0/docker-compose.yml similarity index 95% rename from apps/mdc-ng/1.17.3/docker-compose.yml rename to apps/mdc-ng/1.18.0/docker-compose.yml index c722ba0..ecf74ad 100644 --- a/apps/mdc-ng/1.17.3/docker-compose.yml +++ b/apps/mdc-ng/1.18.0/docker-compose.yml @@ -7,7 +7,7 @@ services: env_file: - ./envs/global.env - .env - image: mdcng/mdc:1.17.3 + image: mdcng/mdc:1.18.0 labels: createdBy: Apps networks: diff --git a/apps/mdc-ng/1.17.3/envs/default.env b/apps/mdc-ng/1.18.0/envs/default.env similarity index 100% rename from apps/mdc-ng/1.17.3/envs/default.env rename to apps/mdc-ng/1.18.0/envs/default.env diff --git a/apps/mdc-ng/1.17.3/envs/global.env b/apps/mdc-ng/1.18.0/envs/global.env similarity index 100% rename from apps/mdc-ng/1.17.3/envs/global.env rename to apps/mdc-ng/1.18.0/envs/global.env diff --git a/apps/mdc-ng/1.17.3/scripts/init.sh b/apps/mdc-ng/1.18.0/scripts/init.sh similarity index 100% rename from apps/mdc-ng/1.17.3/scripts/init.sh rename to apps/mdc-ng/1.18.0/scripts/init.sh diff --git a/apps/mdc-ng/1.17.3/scripts/uninstall.sh b/apps/mdc-ng/1.18.0/scripts/uninstall.sh similarity index 100% rename from apps/mdc-ng/1.17.3/scripts/uninstall.sh rename to apps/mdc-ng/1.18.0/scripts/uninstall.sh diff --git a/apps/mdc-ng/1.17.3/scripts/upgrade.sh b/apps/mdc-ng/1.18.0/scripts/upgrade.sh similarity index 100% rename from apps/mdc-ng/1.17.3/scripts/upgrade.sh rename to apps/mdc-ng/1.18.0/scripts/upgrade.sh