websoft9/README.md

76 lines
3.4 KiB
Markdown
Raw Normal View History

2023-07-01 02:36:32 +00:00
[![](https://lab.frogg.it/lydra/yunohost/ansible-yunohost/badges/main/pipeline.svg)](https://lab.frogg.it/lydra/yunohost/ansible-yunohost/-/pipelines)
[![License: GPL v3](https://img.shields.io/badge/License-GPL%20v3-blue.svg)](http://www.gnu.org/licenses/gpl-3.0)
[![GitHub last commit](https://img.shields.io/github/last-commit/LydraFr/ansible-yunohost)](https://github.com/LydraFr/ansible-yunohost)
[![GitHub Release Date](https://img.shields.io/github/release-date/LydraFr/ansible-yunohost)](https://github.com/LydraFr/ansible-yunohost)
[![GitHub Repo stars](https://img.shields.io/github/stars/LydraFr/ansible-yunohost?style=social)](https://github.com/LydraFr/ansible-yunohost)
2023-07-07 04:59:01 +00:00
# What is Websoft9?
2023-07-07 04:54:28 +00:00
2023-07-07 05:27:06 +00:00
Websoft9 is complete minimalist and web-based PaaS for running open source application that have more than 1k stars on your own server.
2023-07-07 04:54:28 +00:00
2023-07-07 05:23:18 +00:00
Although the architecture in cloud native emphasizes high availability and clustering, this is not suitable for simple applications or low-concurrency scenarios, after all, most applications on the Internet do not need to implement complex clusters or K8S.
2023-07-07 05:25:07 +00:00
Websoft9 solves the problem of using multiple applications in a single server from the beginning, and we strongly believe in the principle of minimalism.Microservices architecture on single machine is not outdated. On the contrary, it becomes more and more valuable as computing power increases
2023-07-07 05:23:18 +00:00
2023-07-07 05:25:07 +00:00
Instead of reinventing the wheel, we integrate the best open source products into our interface so that customers don't have to learn new technology stacks or worry about the lack of maintenance of components
2023-07-07 04:54:28 +00:00
- [Cockpit ](https://cockpit-project.org/): A web-based graphical interface for servers
- [Docker](https://www.docker.com/): Accelerate how you build, share, and run modern applications
- [Nginx Proxy Manager](https://nginxproxymanager.com/): A web-based Nginx management
- [Portainer](https://www.portainer.io/): Powerful container management for DevSecOps
- [Redis](https://redis.io/): The open source, in-memory data store
2023-07-07 05:13:26 +00:00
You can see the sceenshoots below:
2023-07-07 05:01:12 +00:00
2023-07-07 05:13:26 +00:00
| ![image](https://github.com/Websoft9/websoft9/assets/16741975/8321780c-4824-4e40-997d-676a31534063) | ![image](https://github.com/Websoft9/websoft9/assets/16741975/e842575b-60bc-4b0d-a57b-28c26b16196a) | ![image](https://github.com/Websoft9/websoft9/assets/16741975/c598412a-9529-4286-ba03-6234d6da99b9)|
2023-07-07 05:02:23 +00:00
| ---- | ---- | ---- |
2023-07-07 05:14:56 +00:00
| ![image](https://github.com/Websoft9/websoft9/assets/16741975/7bed3744-1e9f-429e-8678-3714c8c262e2)|![image](https://github.com/Websoft9/websoft9/assets/16741975/a0923c69-2792-4cde-bfaf-bc018b61aee9) | ![image](https://github.com/Websoft9/websoft9/assets/16741975/901efd1c-31a0-4b31-b79c-fc2d441bb679)|
2023-07-07 05:13:26 +00:00
2023-07-07 04:59:01 +00:00
2021-08-16 05:49:33 +00:00
## Funtction
2023-05-18 09:15:59 +00:00
- CLI
- Web Console
2023-07-07 05:13:26 +00:00
- Languages: English, Chinese中文
2021-08-16 05:49:33 +00:00
## Development
2023-07-05 01:30:03 +00:00
- websoft9 appmanage
2023-07-05 00:42:28 +00:00
- websoft9 docker-compose
2021-09-10 09:00:01 +00:00
## API
2023-07-05 02:54:34 +00:00
- Docker API: http://IP(内网):5000/
2022-06-25 09:51:48 +00:00
## CMD for referance
2023-05-18 09:15:59 +00:00
2022-06-25 09:51:48 +00:00
```
# Get all docker repo of Websoft9 org
gh repo list Websoft9 -L 500 | awk '{print $1}' | grep docker > test
```
2023-05-18 09:15:59 +00:00
2022-08-16 03:32:33 +00:00
## All-in-one Installer
2023-03-31 09:40:29 +00:00
2023-05-18 09:15:59 +00:00
### only one app
2022-08-16 03:31:21 +00:00
```
2022-08-16 03:41:29 +00:00
# for example, app is mongodb
2023-06-27 06:21:31 +00:00
wget -N https://websoft9.github.io/websoft9/scripts/install.sh; bash install.sh -r mongodb
2022-08-16 03:31:21 +00:00
```
2023-05-18 09:15:59 +00:00
2023-06-27 06:21:31 +00:00
### websoft9 include appstore
2023-05-18 09:15:59 +00:00
2023-03-31 09:40:29 +00:00
```
2023-05-23 03:38:56 +00:00
sudo su # when you have no root privileges
2023-06-27 06:21:31 +00:00
curl https://websoft9.github.io/websoft9/install/install.sh | bash
2023-03-31 09:40:29 +00:00
```
2023-05-30 09:04:58 +00:00
## Upgrade
```
sudo su # when you have no root privileges
2023-06-27 06:21:31 +00:00
curl https://websoft9.github.io/websoft9/install/update.sh | bash
2023-05-30 09:04:58 +00:00
```