Add: docker compose file for CashFab(Pawns.app, Honeygain)
All checks were successful
/ test (push) Successful in 30s
All checks were successful
/ test (push) Successful in 30s
This commit is contained in:
parent
5caad1050f
commit
57013b3f25
3 changed files with 46 additions and 0 deletions
15
Docker/Docker-Compose/CashFab/README.md
Normal file
15
Docker/Docker-Compose/CashFab/README.md
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
# CaseFab
|
||||||
|
|
||||||
|
This containers are for use with the [Pawns.app](https://pawns.app/?r=1321201) and [Honeygain](https://r.honeygain.me/AROY4170ED) services.
|
||||||
|
|
||||||
|
> Note!: That the links are referral links.
|
||||||
|
|
||||||
|
## Setup
|
||||||
|
|
||||||
|
- **Step: 1** Copy the config environment sample file with the following command:`cp env-sample .env`
|
||||||
|
|
||||||
|
- **Step: 2** Edit the `.env` file to match your environment.
|
||||||
|
|
||||||
|
- **Step: 3** Run `docker-compose up -d` to start the containers.
|
||||||
|
|
||||||
|
- **Step: 4** Run `docker-compose logs -f` to see the logs.
|
17
Docker/Docker-Compose/CashFab/docker-compose.yml
Normal file
17
Docker/Docker-Compose/CashFab/docker-compose.yml
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
version: "3"
|
||||||
|
services:
|
||||||
|
pawns-cli:
|
||||||
|
restart: on-failure:5
|
||||||
|
image: iproyal/pawns-cli:latest
|
||||||
|
dns:
|
||||||
|
- $DNS_PRIMARY
|
||||||
|
- $DNS_SECONDARY
|
||||||
|
command: -email=$IPROYALPAWNS_EMAIL -password='$IPROYALPAWNS_PASSWD' -device-name=$DEVICE_NAME -accept-tos
|
||||||
|
|
||||||
|
honeygain:
|
||||||
|
restart: on-failure:5
|
||||||
|
image: honeygain/honeygain
|
||||||
|
dns:
|
||||||
|
- $DNS_PRIMARY
|
||||||
|
- $DNS_SECONDARY
|
||||||
|
command: -tou-accept -email $HONEYGAIN_EMAIL -pass '$HONEYGAIN_PASSWD' -device $DEVICE_NAME
|
14
Docker/Docker-Compose/CashFab/env-sample
Normal file
14
Docker/Docker-Compose/CashFab/env-sample
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
# DNS servers
|
||||||
|
DNS_PRIMARY=9.9.9.9 # Qued9
|
||||||
|
DNS_SECONDARY=149.112.112.112 # Qued9
|
||||||
|
|
||||||
|
# Device name that will be used to identify the device in both Pawns and Honeygain
|
||||||
|
DEVICE_NAME='<device-name>'
|
||||||
|
|
||||||
|
# Pawns CLI email and password
|
||||||
|
IPROYALPAWNS_EMAIL='<your-email@example.com>'
|
||||||
|
IPROYALPAWNS_PASSWD='<password>'
|
||||||
|
|
||||||
|
# Honeygain email and password
|
||||||
|
HONEYGAIN_EMAIL='your-email@example.com'
|
||||||
|
HONEYGAIN_PASSWD='<password>'
|
Loading…
Reference in a new issue