diff --git a/app-list.png b/app-list.png index 03ee3512..915883d6 100644 Binary files a/app-list.png and b/app-list.png differ diff --git a/apps/filebrowser/2.23.0/.env.sample b/apps/filebrowser/2.23.0/.env.sample new file mode 100644 index 00000000..f914cabf --- /dev/null +++ b/apps/filebrowser/2.23.0/.env.sample @@ -0,0 +1,3 @@ +CONTAINER_NAME="filebrowser" +PANEL_APP_PORT_HTTP="40071" +MOUNT_PATH="./data/mnt" diff --git a/apps/filebrowser/2.23.0/data.yml b/apps/filebrowser/2.23.0/data.yml new file mode 100644 index 00000000..cd96ae14 --- /dev/null +++ b/apps/filebrowser/2.23.0/data.yml @@ -0,0 +1,17 @@ +additionalProperties: + formFields: + - default: 40071 + edit: true + envKey: PANEL_APP_PORT_HTTP + labelEn: HTTP Port + labelZh: HTTP端口 + required: true + rule: paramPort + type: number + - default: ./data/mnt + edit: true + envKey: MOUNT_PATH + labelEn: Mount folder path + labelZh: 挂载文件夹路径 + required: true + type: text diff --git a/apps/filebrowser/2.23.0/data/.filebrowser.json b/apps/filebrowser/2.23.0/data/.filebrowser.json new file mode 100644 index 00000000..fbcf6a1a --- /dev/null +++ b/apps/filebrowser/2.23.0/data/.filebrowser.json @@ -0,0 +1,8 @@ +{ + "port": 80, + "baseURL": "", + "address": "", + "log": "stdout", + "database": "/database/filebrowser.db", + "root": "/srv" + } \ No newline at end of file diff --git a/apps/filebrowser/2.23.0/data/database.db b/apps/filebrowser/2.23.0/data/database.db new file mode 100644 index 00000000..e69de29b diff --git a/apps/filebrowser/2.23.0/docker-compose.yml b/apps/filebrowser/2.23.0/docker-compose.yml new file mode 100644 index 00000000..f5892bfc --- /dev/null +++ b/apps/filebrowser/2.23.0/docker-compose.yml @@ -0,0 +1,21 @@ +version: '3' +services: + filebrowser: + container_name: ${CONTAINER_NAME} + restart: always + networks: + - 1panel-network + ports: + - "${PANEL_APP_PORT_HTTP}:80" + volumes: + - "${MOUNT_PATH}:/srv" + - "./data/database.db:/database.db" + - "./data/.filebrowser.json:/.filebrowser.json" + user: "${UID}:${GID}" + image: filebrowser/filebrowser:v2.23.0 + labels: + createdBy: "Apps" + +networks: + 1panel-network: + external: true diff --git a/apps/filebrowser/README.md b/apps/filebrowser/README.md new file mode 100644 index 00000000..31d51348 --- /dev/null +++ b/apps/filebrowser/README.md @@ -0,0 +1,44 @@ +# 使用说明 + +- 默认账户密码 + +``` +username:admin +password:admin +``` + +# 原始相关 + +

+ +

+ +![Preview](https://user-images.githubusercontent.com/5447088/50716739-ebd26700-107a-11e9-9817-14230c53efd2.gif) + +[![Build](https://github.com/filebrowser/filebrowser/actions/workflows/main.yaml/badge.svg)](https://github.com/filebrowser/filebrowser/actions/workflows/main.yaml) +[![Go Report Card](https://goreportcard.com/badge/github.com/filebrowser/filebrowser?style=flat-square)](https://goreportcard.com/report/github.com/filebrowser/filebrowser) +[![Documentation](https://img.shields.io/badge/godoc-reference-blue.svg?style=flat-square)](http://godoc.org/github.com/filebrowser/filebrowser) +[![Version](https://img.shields.io/github/release/filebrowser/filebrowser.svg?style=flat-square)](https://github.com/filebrowser/filebrowser/releases/latest) +[![Chat IRC](https://img.shields.io/badge/freenode-%23filebrowser-blue.svg?style=flat-square)](http://webchat.freenode.net/?channels=%23filebrowser) + +filebrowser provides a file managing interface within a specified directory and it can be used to upload, delete, preview, rename and edit your files. It allows the creation of multiple users and each user can have its own directory. It can be used as a standalone app. + +## Features + +Please refer to our docs at [https://filebrowser.org/features](https://filebrowser.org/features) + +## Install + +For installation instructions please refer to our docs at [https://filebrowser.org/installation](https://filebrowser.org/installation). + +## Configuration + +[Authentication Method](https://filebrowser.org/configuration/authentication-method) - You can change the way the user authenticates with the filebrowser server + +[Command Runner](https://filebrowser.org/configuration/command-runner) - The command runner is a feature that enables you to execute any shell command you want before or after a certain event. + +[Custom Branding](https://filebrowser.org/configuration/custom-branding) - You can customize your File Browser installation by change its name to any other you want, by adding a global custom style sheet and by using your own logotype if you want. + +## Contributing + +If you're interested in contributing to this project, our docs are best places to start [https://filebrowser.org/contributing](https://filebrowser.org/contributing). diff --git a/apps/filebrowser/data.yml b/apps/filebrowser/data.yml new file mode 100644 index 00000000..c4a5bbff --- /dev/null +++ b/apps/filebrowser/data.yml @@ -0,0 +1,20 @@ +name: File Browser +tags: + - 工具 +title: 网页文件浏览器 +type: 工具 +description: 网页文件浏览器 +additionalProperties: + key: filebrowser + name: File Browser + tags: + - Tool + shortDescZh: 网页文件浏览器 + shortDescEn: Web File Browser + type: tool + crossVersionUpdate: true + limit: 0 + recommend: 0 + website: https://filebrowser.org/ + github: https://github.com/filebrowser/filebrowser + document: https://filebrowser.org/ \ No newline at end of file diff --git a/apps/filebrowser/latest/.env.sample b/apps/filebrowser/latest/.env.sample new file mode 100644 index 00000000..f914cabf --- /dev/null +++ b/apps/filebrowser/latest/.env.sample @@ -0,0 +1,3 @@ +CONTAINER_NAME="filebrowser" +PANEL_APP_PORT_HTTP="40071" +MOUNT_PATH="./data/mnt" diff --git a/apps/filebrowser/latest/data.yml b/apps/filebrowser/latest/data.yml new file mode 100644 index 00000000..cd96ae14 --- /dev/null +++ b/apps/filebrowser/latest/data.yml @@ -0,0 +1,17 @@ +additionalProperties: + formFields: + - default: 40071 + edit: true + envKey: PANEL_APP_PORT_HTTP + labelEn: HTTP Port + labelZh: HTTP端口 + required: true + rule: paramPort + type: number + - default: ./data/mnt + edit: true + envKey: MOUNT_PATH + labelEn: Mount folder path + labelZh: 挂载文件夹路径 + required: true + type: text diff --git a/apps/filebrowser/latest/data/.filebrowser.json b/apps/filebrowser/latest/data/.filebrowser.json new file mode 100644 index 00000000..fbcf6a1a --- /dev/null +++ b/apps/filebrowser/latest/data/.filebrowser.json @@ -0,0 +1,8 @@ +{ + "port": 80, + "baseURL": "", + "address": "", + "log": "stdout", + "database": "/database/filebrowser.db", + "root": "/srv" + } \ No newline at end of file diff --git a/apps/filebrowser/latest/data/database.db b/apps/filebrowser/latest/data/database.db new file mode 100644 index 00000000..e69de29b diff --git a/apps/filebrowser/latest/docker-compose.yml b/apps/filebrowser/latest/docker-compose.yml new file mode 100644 index 00000000..076190d3 --- /dev/null +++ b/apps/filebrowser/latest/docker-compose.yml @@ -0,0 +1,21 @@ +version: '3' +services: + filebrowser: + container_name: ${CONTAINER_NAME} + restart: always + networks: + - 1panel-network + ports: + - "${PANEL_APP_PORT_HTTP}:80" + volumes: + - "${MOUNT_PATH}:/srv" + - "./data/database.db:/database.db" + - "./data/.filebrowser.json:/.filebrowser.json" + user: "${UID}:${GID}" + image: filebrowser/filebrowser:latest + labels: + createdBy: "Apps" + +networks: + 1panel-network: + external: true diff --git a/apps/filebrowser/logo.png b/apps/filebrowser/logo.png new file mode 100644 index 00000000..1d76ec2f Binary files /dev/null and b/apps/filebrowser/logo.png differ diff --git a/apps/hasty-paste/README.md b/apps/hasty-paste/README.md new file mode 100644 index 00000000..b6ab9403 --- /dev/null +++ b/apps/hasty-paste/README.md @@ -0,0 +1,63 @@ +# Hasty Paste +![GitHub](https://img.shields.io/github/license/enchant97/hasty-paste?style=flat-square) +![Supported Python Version](https://img.shields.io/badge/python%20version-3.10-blue?style=flat-square) +![Lines of code](https://img.shields.io/tokei/lines/github/enchant97/hasty-paste?style=flat-square) +![GitHub code size in bytes](https://img.shields.io/github/languages/code-size/enchant97/hasty-paste?style=flat-square) +![GitHub release (latest by date including pre-releases)](https://img.shields.io/github/v/release/enchant97/hasty-paste?include_prereleases&label=latest%20release&style=flat-square) + +A fast and minimal paste bin. + +## Looking For Maintainers +I don't find myself using this app much and not having infinite time; would like some assistance on maintaining this project. Since this project is mostly fully feature complete, I am looking for someone who can perform small maintenance. + +You can contact at the links shown [here](https://github.com/enchant97#-how-to-reach-me) (or raise an issue), if you are interested. + +> This project is **not** being abandoned. Any security or major fixes will still be done, if needed. + +## Features +- Quickly paste and save, to share some text +- Publicly accessible, no auth needed +- Randomly generated id's, optional "long" id to reduce brute force attacks +- Add expiring pastes +- Dark theme +- Optional syntax highlighting +- No JavaScript needed +- Uses minimal resources +- REST API +- Pick your file system + - Custom flat-file system + - :construction: S3 objects +- Caching (Internal & Redis) +- Lightweight Docker image (uses Alpine Linux) + +## Showcase +[![Showcase Image](docs/assets/showcase.png)](docs/assets/showcase.png) + +## Docs +Docs are located in the [/docs](docs/index.md) directory. Or on the site: [enchantedcode.co.uk/hasty-paste](https://enchantedcode.co.uk/hasty-paste) + +## Hastily Paste It CLI +This is a simple script allowing the creation of pastes from the command-line. You can download your version [here](hastily-paste-it/README.md). + +## Branches +| Name | Description | State | +| :----------- | :--------------------- | :------------ | +| main | Work ready for release | Stable | +| next | Work for next version | Very Unstable | +| historical-X | Historical versions | Unsupported | + +> Choose a tag/release for most stable if running project + +## Why Is It Called "Hasty Paste"? +The name was chosen not because the project is written badly, but because you use it so fast without a care in the world and "Fast Paste" was already taken! + +## License +This project is Copyright (c) 2023 Leo Spratt, licences shown below: + +Code + + AGPL-3 or any later version. Full license found in `LICENSE.txt` + +Documentation + + FDLv1.3 or any later version. Full license found in `docs/LICENSE.txt` diff --git a/apps/hasty-paste/data.yml b/apps/hasty-paste/data.yml new file mode 100644 index 00000000..4de4c759 --- /dev/null +++ b/apps/hasty-paste/data.yml @@ -0,0 +1,20 @@ +name: Hasty Paste +tags: + - 工具 +title: 一个快速粘贴文本并共享的地方 +type: 工具 +description: 一个快速粘贴文本并共享的地方 +additionalProperties: + key: hasty-paste + name: Hasty Paste + tags: + - Tool + shortDescZh: 一个快速粘贴文本并共享的地方 + shortDescEn: A place to quickly paste some text and share it + type: tool + crossVersionUpdate: true + limit: 0 + recommend: 0 + website: https://enchantedcode.co.uk/hasty-paste/ + github: https://github.com/enchant97/hasty-paste + document: https://enchantedcode.co.uk/hasty-paste/ diff --git a/apps/hasty-paste/latest/.env.sample b/apps/hasty-paste/latest/.env.sample new file mode 100644 index 00000000..7f3219b4 --- /dev/null +++ b/apps/hasty-paste/latest/.env.sample @@ -0,0 +1,3 @@ +CONTAINER_NAME="hasty-paste" +PANEL_APP_PORT_HTTP="40070" + diff --git a/apps/hasty-paste/latest/data.yml b/apps/hasty-paste/latest/data.yml new file mode 100644 index 00000000..62a74449 --- /dev/null +++ b/apps/hasty-paste/latest/data.yml @@ -0,0 +1,12 @@ +additionalProperties: + formFields: + - default: 40070 + edit: true + envKey: PANEL_APP_PORT_HTTP + labelEn: Port + labelZh: 端口 + required: true + rule: paramPort + type: number + + diff --git a/apps/hasty-paste/latest/docker-compose.yml b/apps/hasty-paste/latest/docker-compose.yml new file mode 100644 index 00000000..40e6a650 --- /dev/null +++ b/apps/hasty-paste/latest/docker-compose.yml @@ -0,0 +1,23 @@ +version: '3' +services: + hasty-paste: + container_name: ${CONTAINER_NAME} + restart: always + networks: + - 1panel-network + ports: + - "${PANEL_APP_PORT_HTTP}:8000" + volumes: + - hpaste_data:/app/data + environment: + - TZ=Asia/Shanghai + image: ghcr.io/enchant97/hasty-paste:latest + labels: + createdBy: "Apps" + +volumes: + hpaste_data: + +networks: + 1panel-network: + external: true diff --git a/apps/hasty-paste/logo.png b/apps/hasty-paste/logo.png new file mode 100644 index 00000000..d4f911a2 Binary files /dev/null and b/apps/hasty-paste/logo.png differ diff --git a/apps/nextcloud/27.0.1/.env.sample b/apps/nextcloud/27.0.1/.env.sample new file mode 100644 index 00000000..1f542770 --- /dev/null +++ b/apps/nextcloud/27.0.1/.env.sample @@ -0,0 +1,3 @@ +CONTAINER_NAME="nextcloud" +PANEL_APP_PORT_HTTPS="40069" +DATA_PATH="./data" diff --git a/apps/nextcloud/27.0.1/data.yml b/apps/nextcloud/27.0.1/data.yml new file mode 100644 index 00000000..4cbcf767 --- /dev/null +++ b/apps/nextcloud/27.0.1/data.yml @@ -0,0 +1,18 @@ +additionalProperties: + formFields: + - default: 40069 + edit: true + envKey: PANEL_APP_PORT_HTTPS + labelEn: HTTPS Port + labelZh: HTTPS端口 + required: true + rule: paramPort + type: number + - default: ./data + edit: true + envKey: DATA_PATH + labelEn: Data folder path + labelZh: 数据文件夹路径 + required: true + type: text + diff --git a/apps/nextcloud/27.0.1/docker-compose.yml b/apps/nextcloud/27.0.1/docker-compose.yml new file mode 100644 index 00000000..887e792f --- /dev/null +++ b/apps/nextcloud/27.0.1/docker-compose.yml @@ -0,0 +1,23 @@ +version: '3' +services: + nextcloud: + container_name: ${CONTAINER_NAME} + restart: always + networks: + - 1panel-network + ports: + - "${PANEL_APP_PORT_HTTPS}:443" + volumes: + - "${DATA_PATH}/config:/config" + - "${DATA_PATH}/data:/data" + environment: + - PUID=1000 + - PGID=1000 + - TZ=Asia/Shanghai + image: linuxserver/nextcloud:27.0.1 + labels: + createdBy: "Apps" + +networks: + 1panel-network: + external: true diff --git a/apps/nextcloud/README.md b/apps/nextcloud/README.md new file mode 100644 index 00000000..5ef94047 --- /dev/null +++ b/apps/nextcloud/README.md @@ -0,0 +1,163 @@ +# Nextcloud Server ☁ +[![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/nextcloud/server/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/nextcloud/server/?branch=master) +[![codecov](https://codecov.io/gh/nextcloud/server/branch/master/graph/badge.svg)](https://codecov.io/gh/nextcloud/server) +[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/209/badge)](https://bestpractices.coreinfrastructure.org/projects/209) +[![Design](https://contribute.design/api/shield/nextcloud/server)](https://contribute.design/nextcloud/server) + +**A safe home for all your data.** + +![](https://raw.githubusercontent.com/nextcloud/screenshots/master/nextcloud-hub-files-25-preview.png) + +## Why is this so awesome? 🤩 + +* 📁 **Access your Data** You can store your files, contacts, calendars, and more on a server of your choosing. +* 🔄 **Sync your Data** You keep your files, contacts, calendars, and more synchronized amongst your devices. +* 🙌 **Share your Data** …by giving others access to the stuff you want them to see or to collaborate with. +* 🚀 **Expandable with hundreds of Apps** ...like [Calendar](https://github.com/nextcloud/calendar), [Contacts](https://github.com/nextcloud/contacts), [Mail](https://github.com/nextcloud/mail), [Video Chat](https://github.com/nextcloud/spreed) and all those you can discover in our [App Store](https://apps.nextcloud.com) +* 🔒 **Security** with our encryption mechanisms, [HackerOne bounty program](https://hackerone.com/nextcloud) and two-factor authentication. + +Do you want to learn more about how you can use Nextcloud to access, share and protect your files, calendars, contacts, communication & more at home and in your organization? [**Learn about all our Features**](https://nextcloud.com/athome/). + +## Get your Nextcloud 🚚 + +- ☑️ [**Simply sign up**](https://nextcloud.com/signup/) at one of our providers either through our website or through the apps directly. +- 🖥 [**Install** a server by yourself](https://nextcloud.com/install/#instructions-server) on your hardware or by using one of our ready to use **appliances** +- 📦 Buy one of the [awesome **devices** coming with a preinstalled Nextcloud](https://nextcloud.com/devices/) +- 🏢 Find a [service **provider**](https://nextcloud.com/providers/) who hosts Nextcloud for you or your company + +Enterprise? Public Sector or Education user? You may want to have a look into [**Nextcloud Enterprise**](https://nextcloud.com/enterprise/) provided by Nextcloud GmbH. + +## Get in touch 💬 + +* [📋 Forum](https://help.nextcloud.com) +* [👥 Facebook](https://www.facebook.com/nextclouders) +* [🐣 Twitter](https://twitter.com/Nextclouders) +* [🐘 Mastodon](https://mastodon.xyz/@nextcloud) + +You can also [get support for Nextcloud](https://nextcloud.com/support)! + + +## Join the team 👪 + +There are many ways to contribute, of which development is only one! Find out [how to get involved](https://nextcloud.com/contribute/), including as a translator, designer, tester, helping others, and much more! 😍 + + +### Development setup 👩‍💻 + +1. 🚀 [Set up your local development environment](https://docs.nextcloud.com/server/latest/developer_manual/getting_started/devenv.html) +2. 🐛 [Pick a good first issue](https://github.com/nextcloud/server/labels/good%20first%20issue) +3. 👩‍🔧 Create a branch and make your changes. Remember to sign off your commits using `git commit -sm "Your commit message"` +4. ⬆ Create a [pull request](https://opensource.guide/how-to-contribute/#opening-a-pull-request) and `@mention` the people from the issue to review +5. 👍 Fix things that come up during a review +6. 🎉 Wait for it to get merged! + +Third-party components are handled as git submodules which have to be initialized first. So aside from the regular git checkout invoking `git submodule update --init` or a similar command is needed, for details see Git documentation. + +Several apps that are included by default in regular releases such as [First run wizard](https://github.com/nextcloud/firstrunwizard) or [Activity](https://github.com/nextcloud/activity) are missing in `master` and have to be installed manually by cloning them into the `apps` subfolder. + +Otherwise, git checkouts can be handled the same as release archives, by using the `stable*` branches. Note they should never be used on production systems. + +### Working with front-end code 🏗 + +#### Building Vue components and scripts + +We are moving more and more toward using Vue.js in the front-end, starting with Settings. For building the code on changes, use these terminal commands in the root folder: + +```bash +# install dependencies +make dev-setup + +# build for development +make build-js + +# build for development and watch edits +make watch-js + +# build for production with minification +make build-js-production +``` + +#### Building styles + +Styles are written in SCSS and compiled to css. + +```bash +# install dependencies +make dev-setup + +# compile style sheets +npm run sass + +# compile style sheets and watch edits +npm run sass:watch +``` + +#### Committing changes + +**When making changes, also commit the compiled files!** + +We still use Handlebars templates in some places in Files and Settings. We will replace these step-by-step with Vue.js, but in the meantime, you need to compile them separately. + +If you don’t have Handlebars installed yet, you can do it with this terminal command: +```bash +sudo npm install -g handlebars +``` + +Then inside the root folder of your local Nextcloud development installation, run this command in the terminal every time you changed a `.handlebars` file to compile it: +```bash +./build/compile-handlebars-templates.sh +``` + +Before checking in JS changes, make sure to also build for production: +```bash +make build-js-production +``` +Then add the compiled files for committing. + +To save some time, to only rebuild for a specific app, use the following and replace the module with the app name: +```bash +MODULE=user_status make build-js-production +``` + +Please note that if you used `make build-js` or `make watch-js` before, you'll notice that a lot of files were marked as changed, so might need to clear the workspace first. + +### Working with back-end code 🏗 + +When changing back-end PHP code, in general, no additional steps are needed before checking in. + +However, if new files were created, you will need to run the following command to update the autoloader files: +```bash +build/autoloaderchecker.sh +``` + +After that, please also include the autoloader file changes in your commits. + +### Tools we use 🛠 + +- [👀 BrowserStack](https://browserstack.com) for cross-browser testing +- [🌊 WAVE](https://wave.webaim.org/extension/) for accessibility testing +- [🚨 Lighthouse](https://developers.google.com/web/tools/lighthouse/) for testing performance, accessibility, and more + +#### Helpful bots at github :robot: + +- Comment on a pull request with `/update-3rdparty` to update the 3rd party submodule. It will update to the last commit of the 3rd party branch named like the PR target. + +## Contribution guidelines 📜 + +All contributions to this repository from June 16, 2016, and onward are considered to be +licensed under the AGPLv3 or any later version. + +Nextcloud doesn't require a CLA (Contributor License Agreement). +The copyright belongs to all the individual contributors. Therefore we recommend +that every contributor adds the following line to the header of a file if they +changed it substantially: + +``` +@copyright Copyright (c) , () +``` + +Please read the [Code of Conduct](https://nextcloud.com/community/code-of-conduct/). This document offers some guidance to ensure Nextcloud participants can cooperate effectively in a positive and inspiring atmosphere, and to explain how together we can strengthen and support each other. + +Please review the [guidelines for contributing](.github/CONTRIBUTING.md) to this repository. + +More information how to contribute: [https://nextcloud.com/contribute/](https://nextcloud.com/contribute/) diff --git a/apps/nextcloud/data.yml b/apps/nextcloud/data.yml new file mode 100644 index 00000000..3a2b9067 --- /dev/null +++ b/apps/nextcloud/data.yml @@ -0,0 +1,20 @@ +name: Nextcloud +tags: + - 建站 +title: Nextcloud服务器,所有数据的安全家园 +type: 建站 +description: Nextcloud服务器,所有数据的安全家园 +additionalProperties: + key: nextcloud + name: Nextcloud + tags: + - WebSite + shortDescZh: Nextcloud服务器,所有数据的安全家园 + shortDescEn: Nextcloud server, a safe home for all your data + type: website + crossVersionUpdate: true + limit: 0 + recommend: 0 + website: https://nextcloud.com/ + github: https://github.com/nextcloud/server + document: https://docs.nextcloud.com/ diff --git a/apps/nextcloud/latest/.env.sample b/apps/nextcloud/latest/.env.sample new file mode 100644 index 00000000..1f542770 --- /dev/null +++ b/apps/nextcloud/latest/.env.sample @@ -0,0 +1,3 @@ +CONTAINER_NAME="nextcloud" +PANEL_APP_PORT_HTTPS="40069" +DATA_PATH="./data" diff --git a/apps/nextcloud/latest/data.yml b/apps/nextcloud/latest/data.yml new file mode 100644 index 00000000..4cbcf767 --- /dev/null +++ b/apps/nextcloud/latest/data.yml @@ -0,0 +1,18 @@ +additionalProperties: + formFields: + - default: 40069 + edit: true + envKey: PANEL_APP_PORT_HTTPS + labelEn: HTTPS Port + labelZh: HTTPS端口 + required: true + rule: paramPort + type: number + - default: ./data + edit: true + envKey: DATA_PATH + labelEn: Data folder path + labelZh: 数据文件夹路径 + required: true + type: text + diff --git a/apps/nextcloud/latest/docker-compose.yml b/apps/nextcloud/latest/docker-compose.yml new file mode 100644 index 00000000..c59c9b7a --- /dev/null +++ b/apps/nextcloud/latest/docker-compose.yml @@ -0,0 +1,23 @@ +version: '3' +services: + nextcloud: + container_name: ${CONTAINER_NAME} + restart: always + networks: + - 1panel-network + ports: + - "${PANEL_APP_PORT_HTTPS}:443" + volumes: + - "${DATA_PATH}/config:/config" + - "${DATA_PATH}/data:/data" + environment: + - PUID=1000 + - PGID=1000 + - TZ=Asia/Shanghai + image: linuxserver/nextcloud:latest + labels: + createdBy: "Apps" + +networks: + 1panel-network: + external: true diff --git a/apps/nextcloud/logo.png b/apps/nextcloud/logo.png new file mode 100644 index 00000000..8d816884 Binary files /dev/null and b/apps/nextcloud/logo.png differ