diff --git a/apps/mdc-ng/0.56.4/.env.sample b/apps/mdc-ng/0.56.4/.env.sample new file mode 100644 index 00000000..fce97145 --- /dev/null +++ b/apps/mdc-ng/0.56.4/.env.sample @@ -0,0 +1,10 @@ +CONFIG_PATH="./data/config" +CONTAINER_NAME="mdc-ng" +MEDIA_PATH="./data/media" +MEDIA_PATH_2="./data/media2" +MEDIA_PATH_INTERNAL="/media" +MEDIA_PATH_INTERNAL_2="/media2" +PANEL_APP_PORT_HTTP=40300 +PGID=1000 +PUID=1000 +TIME_ZONE="Asia/Shanghai" diff --git a/apps/mdc-ng/0.56.4/data.yml b/apps/mdc-ng/0.56.4/data.yml new file mode 100644 index 00000000..f4b52002 --- /dev/null +++ b/apps/mdc-ng/0.56.4/data.yml @@ -0,0 +1,66 @@ +additionalProperties: + formFields: + - default: "40300" + edit: true + envKey: PANEL_APP_PORT_HTTP + labelEn: Port + labelZh: 端口 + required: true + rule: paramPort + type: number + - default: "./data/config" + edit: true + envKey: CONFIG_PATH + labelEn: Config Path + labelZh: 配置路径 + required: true + type: text + - default: "./data/media" + edit: true + envKey: MEDIA_PATH + labelEn: Media Path + labelZh: 媒体路径 + required: true + type: text + - default: "/media" + disabled: true + envKey: MEDIA_PATH_INTERNAL + labelEn: Internal Media Path + labelZh: 容器内部媒体路径 + required: true + type: text + - default: "./data/media2" + edit: true + envKey: MEDIA_PATH_2 + labelEn: Media Path 2 + labelZh: 媒体路径 2 + required: true + type: text + - default: "/media2" + disabled: true + envKey: MEDIA_PATH_INTERNAL_2 + labelEn: Internal Media Path 2 + labelZh: 容器内部媒体路径 2 + required: true + type: text + - default: "1000" + edit: true + envKey: PUID + labelEn: User ID + labelZh: 用户 ID + required: true + type: number + - default: "1000" + edit: true + envKey: PGID + labelEn: Group ID + labelZh: 组 ID + required: true + type: number + - default: "Asia/Shanghai" + edit: true + envKey: TIME_ZONE + labelEn: Time zone + labelZh: 时区 + required: true + type: text \ No newline at end of file diff --git a/apps/mdc-ng/0.56.4/docker-compose.yml b/apps/mdc-ng/0.56.4/docker-compose.yml new file mode 100644 index 00000000..b4c480fc --- /dev/null +++ b/apps/mdc-ng/0.56.4/docker-compose.yml @@ -0,0 +1,23 @@ +services: + mdc-ng: + image: "mdcng/mdc:0.56.4" + container_name: ${CONTAINER_NAME} + restart: always + networks: + - 1panel-network + ports: + - "${PANEL_APP_PORT_HTTP}:9208" + environment: + - PUID=${PUID} + - PGID=${PGID} + - TZ=${TIME_ZONE} + volumes: + - "${CONFIG_PATH}:/config" + - "${MEDIA_PATH}:${MEDIA_PATH_INTERNAL}" + - "${MEDIA_PATH_2}:${MEDIA_PATH_INTERNAL_2}" + labels: + createdBy: "Apps" + +networks: + 1panel-network: + external: true diff --git a/apps/mdc-ng/README.md b/apps/mdc-ng/README.md new file mode 100644 index 00000000..79a43381 --- /dev/null +++ b/apps/mdc-ng/README.md @@ -0,0 +1,3 @@ +# MDC-N(ext)G(eneration) + +你的次世代媒体库管理方案。 \ No newline at end of file diff --git a/apps/mdc-ng/data.yml b/apps/mdc-ng/data.yml new file mode 100644 index 00000000..c8861a88 --- /dev/null +++ b/apps/mdc-ng/data.yml @@ -0,0 +1,19 @@ +name: MDC-NG +tags: + - 多媒体 +title: 你的次世代媒体库管理方案 +description: 你的次世代媒体库管理方案 +additionalProperties: + key: mdc-ng + name: MDC-NG + tags: + - Media + shortDescZh: 你的次世代媒体库管理方案 + shortDescEn: Yet another Movie Data Capture tool + type: tool + crossVersionUpdate: true + limit: 0 + recommend: 0 + website: https://hub.docker.com/r/mdcng/mdc + github: https://github.com/mdc-ng/mdc-ng + document: https://github.com/mdc-ng/mdc-ng diff --git a/apps/mdc-ng/latest/.env.sample b/apps/mdc-ng/latest/.env.sample new file mode 100644 index 00000000..fce97145 --- /dev/null +++ b/apps/mdc-ng/latest/.env.sample @@ -0,0 +1,10 @@ +CONFIG_PATH="./data/config" +CONTAINER_NAME="mdc-ng" +MEDIA_PATH="./data/media" +MEDIA_PATH_2="./data/media2" +MEDIA_PATH_INTERNAL="/media" +MEDIA_PATH_INTERNAL_2="/media2" +PANEL_APP_PORT_HTTP=40300 +PGID=1000 +PUID=1000 +TIME_ZONE="Asia/Shanghai" diff --git a/apps/mdc-ng/latest/data.yml b/apps/mdc-ng/latest/data.yml new file mode 100644 index 00000000..f4b52002 --- /dev/null +++ b/apps/mdc-ng/latest/data.yml @@ -0,0 +1,66 @@ +additionalProperties: + formFields: + - default: "40300" + edit: true + envKey: PANEL_APP_PORT_HTTP + labelEn: Port + labelZh: 端口 + required: true + rule: paramPort + type: number + - default: "./data/config" + edit: true + envKey: CONFIG_PATH + labelEn: Config Path + labelZh: 配置路径 + required: true + type: text + - default: "./data/media" + edit: true + envKey: MEDIA_PATH + labelEn: Media Path + labelZh: 媒体路径 + required: true + type: text + - default: "/media" + disabled: true + envKey: MEDIA_PATH_INTERNAL + labelEn: Internal Media Path + labelZh: 容器内部媒体路径 + required: true + type: text + - default: "./data/media2" + edit: true + envKey: MEDIA_PATH_2 + labelEn: Media Path 2 + labelZh: 媒体路径 2 + required: true + type: text + - default: "/media2" + disabled: true + envKey: MEDIA_PATH_INTERNAL_2 + labelEn: Internal Media Path 2 + labelZh: 容器内部媒体路径 2 + required: true + type: text + - default: "1000" + edit: true + envKey: PUID + labelEn: User ID + labelZh: 用户 ID + required: true + type: number + - default: "1000" + edit: true + envKey: PGID + labelEn: Group ID + labelZh: 组 ID + required: true + type: number + - default: "Asia/Shanghai" + edit: true + envKey: TIME_ZONE + labelEn: Time zone + labelZh: 时区 + required: true + type: text \ No newline at end of file diff --git a/apps/mdc-ng/latest/docker-compose.yml b/apps/mdc-ng/latest/docker-compose.yml new file mode 100644 index 00000000..dcd46e19 --- /dev/null +++ b/apps/mdc-ng/latest/docker-compose.yml @@ -0,0 +1,23 @@ +services: + mdc-ng: + image: "mdcng/mdc:latest" + container_name: ${CONTAINER_NAME} + restart: always + networks: + - 1panel-network + ports: + - "${PANEL_APP_PORT_HTTP}:9208" + environment: + - PUID=${PUID} + - PGID=${PGID} + - TZ=${TIME_ZONE} + volumes: + - "${CONFIG_PATH}:/config" + - "${MEDIA_PATH}:${MEDIA_PATH_INTERNAL}" + - "${MEDIA_PATH_2}:${MEDIA_PATH_INTERNAL_2}" + labels: + createdBy: "Apps" + +networks: + 1panel-network: + external: true diff --git a/apps/mdc-ng/logo.png b/apps/mdc-ng/logo.png new file mode 100644 index 00000000..9cec3e62 Binary files /dev/null and b/apps/mdc-ng/logo.png differ