mirror of
https://github.com/lalanza808/xmr.sh.git
synced 2025-05-11 02:45:43 -04:00
Version bump, README, lws url
This commit is contained in:
parent
f0f02adb81
commit
821b8cf8a1
2 changed files with 8 additions and 4 deletions
|
@ -31,12 +31,13 @@ Check the [wiki](https://github.com/vdo/xmr.sh/wiki/FAQ)
|
|||
- [x] Make tor service optional
|
||||
- [x] Block explorer (disabled)
|
||||
- [x] Grafana dashboard
|
||||
- [x] arm64 support for all images
|
||||
- [x] monerod-lws support (experimental)
|
||||
- [ ] Shellcheck via Github Actions
|
||||
- [ ] Installation documentation
|
||||
- [ ] arm64 support for all images
|
||||
- [ ] monerod-lws support
|
||||
- [ ] monerod-proxy support for random node forwarding
|
||||
- [ ] i2p service
|
||||
- [ ] p2pool mining
|
||||
|
||||
# Credits
|
||||
|
||||
|
|
7
install
7
install
|
@ -28,7 +28,7 @@ StatInfo="${White}${On_Black}"
|
|||
################################################################
|
||||
# Vars #
|
||||
################################################################
|
||||
VERSION="v0.3.2"
|
||||
VERSION="v0.3.3"
|
||||
XMRSH_INSTALL_CMD="sudo bash -c \"\$(curl -sLSf https://get.xmr.sh)\""
|
||||
XMRSH_DIR="/opt/xmr.sh"
|
||||
XMRSH_BRANCH="main"
|
||||
|
@ -304,7 +304,7 @@ configure_explorer() {
|
|||
configure_lws() {
|
||||
echo -e "${OkBullet}Configuring LWS..."
|
||||
while true; do
|
||||
read -r -e -p " Do you want to enable the light wallet service? [y/n]: " yn
|
||||
read -r -e -p " Do you want to enable the light wallet service (experimental)? [y/n]: " yn
|
||||
case $yn in
|
||||
[Yy]*)
|
||||
sed -i '/#!lws/s/# //g' docker-compose.yml
|
||||
|
@ -404,6 +404,9 @@ completed() {
|
|||
if [ "$ENABLE_EXPLORER" = true ]; then
|
||||
echo -e " ${Red}│${Stat} Explorer URL: ${StatInfo}https://${HOST}${PORT_SUFF}/explorer"
|
||||
fi
|
||||
if [ "$ENABLE_LWS" = true ]; then
|
||||
echo -e " ${Red}│${Stat} LWS URL: ${StatInfo}https://${HOST}${PORT_SUFF}/lws"
|
||||
fi
|
||||
if [ "$ENABLE_GRAFANA" = true ]; then
|
||||
echo -e " ${Red}│${Stat} Grafana URL: ${StatInfo}https://${HOST}${PORT_SUFF}/grafana"
|
||||
echo -e " ${Red}│${Stat} Grafana user: ${StatInfo}admin"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue