Skip to content

Commit

Permalink
Add new application integration Packetshre (#38)
Browse files Browse the repository at this point in the history
  • Loading branch information
XternA authored Sep 29, 2024
1 parent 7be7bb0 commit e483f98
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,7 @@ Each app has been grouped in the install option. Therefore, whether it be reside
| **[GAGANODE](https://bit.ly/4452ram)** | :white_check_mark: | :white_check_mark: |Unlimited|1 | Crypto |
| **[NODEPAY](https://bit.ly/3zs6B0o)** | :white_check_mark: | :x: |250|Unlimited | Coming Soon |
| **[BEARSHARE](https://bit.ly/4g7PmCs)** | :white_check_mark: | :white_check_mark: |Unlimited|1 | Crypto |
| **[PACKETSHARE](https://bit.ly/47NcTVR)** | :white_check_mark: | :x: |Unlimited|1 | PayPal |
## Tested Environments ✅
The docker stack should work on anything that has docker installed. The tool has been tried and tested on the following environments:
Expand Down
10 changes: 10 additions & 0 deletions apps.json
Original file line number Diff line number Diff line change
Expand Up @@ -171,5 +171,15 @@
],
"is_enabled": true,
"service_enabled": true
},
{
"name": "PACKETSHARE",
"url": "https://bit.ly/47NcTVR",
"description": " Only 1 device per IP allowed. Use IGM tool to disable app deployment on other machines in same IP network.",
"properties": [
"PACKETSHARE_EMAIL",
"PACKETSHARE_PASSWORD"
],
"is_enabled": true
}
]
17 changes: 17 additions & 0 deletions compose/compose.single.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,3 +35,20 @@ services:
cpus: $CPU_LIMIT
mem_limit: $RAM_LIMIT
mem_reservation: $RAM_RESERVE

packetshare:
container_name: packetshare
image: packetshare/packetshare
restart: always
command: >
-accept-tos
-email=${PACKETSHARE_EMAIL:-}
-password=${PACKETSHARE_PASSWORD:-}
profiles:
- ${PACKETSHARE:-DISABLED}
dns:
- 1.1.1.1
- 8.8.8.8
cpus: $CPU_LIMIT
mem_limit: $RAM_LIMIT
mem_reservation: $RAM_RESERVE

0 comments on commit e483f98

Please sign in to comment.