-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
c4721e1
commit 2404fff
Showing
8 changed files
with
107 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
W9_ID=cloudreve | ||
W9_REPO=cloudreve/cloudreve | ||
W9_DIST=community | ||
W9_VERSION=latest | ||
|
||
#### -- Not allowed to edit below environments when recreate app based on existing data -- #### | ||
W9_NETWORK=websoft9 | ||
#### --------------------------------------------------------------------------------------- #### |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
# CHANGELOG | ||
|
||
## Release | ||
### Fixes and Enhancements | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# Cloudreve | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Ansible on Docker | ||
|
||
This is an **Docker Compose solution** powered by [Websoft9](https://www.websoft9.com) based on Docker for Ansible: | ||
|
||
|
||
- community: 2.16.1 | ||
|
||
|
||
## System Requirements | ||
|
||
The following are the minimal [recommended requirements](https://docs.ansible.com/ansible/latest/installation_guide): | ||
|
||
* **RAM**: 1 GB or more | ||
* **CPU**: 1 cores or higher | ||
* **Disk**: at least 1 GB of free space | ||
* **bandwidth**: more fluent experience over 100M | ||
|
||
## Install | ||
|
||
You can install this Ansible by [How to use it?](https://github.com/Websoft9/docker-library#how-to-use-it). | ||
|
||
If you want use Ansible with **Websoft9 Business Support** free, you can [subscribe Ansible](https://www.websoft9.com/apps) on Cloud platform | ||
|
||
## Documentation | ||
|
||
[Ansible Administrator Guide](https://support.websoft9.com/docs/ansible) powered by Websoft9 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# image: https://hub.docker.com/r/websoft9dev/ansible | ||
# compose: https://docs.cloudreve.org/getting-started/install#yun-hang | ||
|
||
version: '3.8' | ||
|
||
services: | ||
cloudreve: | ||
image: $W9_REPO:$W9_VERSION | ||
container_name: $W9_ID | ||
restart: unless-stopped | ||
ports: | ||
- "5212:5212" | ||
volumes: | ||
- temp_data:/data | ||
- ./cloudreve/uploads:/cloudreve/uploads | ||
- ./cloudreve/conf.ini:/cloudreve/conf.ini | ||
- ./cloudreve/cloudreve.db:/cloudreve/cloudreve.db | ||
- ./cloudreve/avatar:/cloudreve/avatar | ||
depends_on: | ||
- aria2 | ||
aria2: | ||
container_name: $W9_ID-aria2 | ||
image: p3terx/aria2-pro | ||
restart: unless-stopped | ||
environment: | ||
- RPC_SECRET=your_aria_rpc_token | ||
- RPC_PORT=6800 | ||
volumes: | ||
- ./aria2/config:/config | ||
- temp_data:/data | ||
|
||
networks: | ||
default: | ||
name: ${W9_NETWORK} | ||
external: true | ||
|
||
volumes: | ||
temp_data: |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"name": "cloudreve", | ||
"trademark": "Cloudreve", | ||
"release": true, | ||
"fork_url": "", | ||
"edition": [ | ||
{ | ||
"dist": "community", | ||
"version": [ | ||
"2.16.1" | ||
] | ||
} | ||
], | ||
"requirements": { | ||
"cpu": "1", | ||
"memory": "1", | ||
"disk": "1", | ||
"url": "https://docs.cloudreve.org/getting-started/install#yun-hang" | ||
} | ||
} |