Online repository for publishing install scripts for MMFP Products.
install-cli.sh) - RECOMMENDED - FASTESTFull deployment of the MMFP mining infrastructure entirely via terminal prompts — no web UI required. Supports DigiByte (DGB), Bitcoin Cash (BCH), and Bitcoin (BTC).
sudo bash -c "$(curl -sSL https://get.mmfpsolutions.io/scripts/install-cli.sh)"
What it deploys (7 containers):
What it does:
/data directoryuninstall.sh)Removes MMFP components with tiered prompts — choose what to keep and what to remove.
sudo bash -c "$(curl -sSL https://get.mmfpsolutions.io/scripts/uninstall.sh)"
Prompts to remove (in order):
/data directory (wallet warning, defaults to No)mim system user (defaults to No)MIN_MEMORY_GB)# CLI installer
sudo bash scripts/install-cli.sh
# Uninstaller
sudo bash scripts/uninstall.sh
# Web installer (optional)
sudo bash scripts/install-web.sh
gssa/
├── README.md
├── scripts/
│ ├── install-cli.sh # Full CLI installer (multi-coin)
│ ├── uninstall.sh # Tiered uninstaller
│ └── install-web.sh # Web installer (MIM Bootstrap, optional)
├── templates/ # Config templates (served via GitHub Pages)
│ ├── docker-compose.yml # Base services (GSS, Postgres, MIM, AxeOS, etc.)
│ ├── env.template
│ ├── goslimstratum/
│ │ └── config.json.template
│ ├── axeos-dashboard/
│ │ ├── config.json.template
│ │ ├── rpcConfig.json.template
│ │ ├── access.json
│ │ └── jsonWebTokenKey.json
│ ├── mim-config/
│ │ └── servers.json.template
│ ├── postgres/
│ │ └── user-db-setup.sql.template
│ └── coins/ # Per-coin templates
│ ├── dgb/ # DigiByte
│ │ ├── docker-compose.yml
│ │ ├── node.conf.template
│ │ └── gss-coin.json.template
│ ├── bch/ # Bitcoin Cash
│ │ ├── docker-compose.yml
│ │ ├── node.conf.template
│ │ └── gss-coin.json.template
│ └── btc/ # Bitcoin (Knots)
│ ├── docker-compose.yml
│ ├── node.conf.template
│ └── gss-coin.json.template
└── design-documents/
└── install-cli-design.md
This is a public GitHub repo. Scripts and templates are served via GitHub Pages at get.mmfpsolutions.io.
# CLI installer
sudo bash -c "$(curl -sSL https://get.mmfpsolutions.io/scripts/install-cli.sh)"
# Uninstaller
sudo bash -c "$(curl -sSL https://get.mmfpsolutions.io/scripts/uninstall.sh)"
# Web installer (optional)
sudo bash -c "$(curl -sSL https://get.mmfpsolutions.io/scripts/install-web.sh)"
install-web.sh) - SLOWEST - ONLY SUPPORTS DGBAlternative installer that launches the MIM Bootstrap web UI for guided setup. Use this if you prefer a browser-based workflow.
sudo bash -c "$(curl -sSL https://get.mmfpsolutions.io/scripts/install-web.sh)"
What it does:
/data directory