-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature - Improved App Selection (#31)
* Improved app selection to now show bot app and service type along with selection before installation * Optimised import and export function and fixed bug issues when operating these functions * Optimised data display and fixed issue when switching context * Optimised and feature improved install application display menu * Updated CLI options and added service option to app install choice * Updated default logic option to include newly added field * Fixed return key stuck in loop when nothing to install
- Loading branch information
Showing
6 changed files
with
427 additions
and
290 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,32 @@ | ||
services: | ||
honeygain-pot: | ||
container_name: honeygain-pot | ||
image: xterna/honeygain-pot | ||
restart: always | ||
environment: | ||
- EMAIL=${HONEYGAIN_EMAIL:-} | ||
- PASSWORD=${HONEYGAIN_PASSWORD:-} | ||
profiles: | ||
- ${HONEYGAIN_SERVICE:-DISABLED} | ||
dns: | ||
- 1.1.1.1 | ||
- 8.8.8.8 | ||
cpus: $ALT_MIN_CPU_LIMIT | ||
mem_limit: $RAM_LIMIT | ||
mem_reservation: $RAM_RESERVE | ||
|
||
bearshare-pot: | ||
container_name: bearshare-pot | ||
image: xterna/bearshare-pot | ||
restart: always | ||
environment: | ||
- EMAIL=${BEARSHARE_EMAIL:-} | ||
- PASSWORD=${BEARSHARE_PASSWORD:-} | ||
profiles: | ||
- ${BEARSHARE_SERVICE:-DISABLED} | ||
dns: | ||
- 1.1.1.1 | ||
- 8.8.8.8 | ||
cpus: $ALT_MIN_CPU_LIMIT | ||
mem_limit: $RAM_LIMIT | ||
mem_reservation: $RAM_RESERVE |
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
Oops, something went wrong.