Browse Source

Umbrel v0.1.3-beta (#21)

https://github.com/getumbrel/umbrel/pull/21
patch-1 v0.1.3-beta
Mayank Chhabra 4 years ago
committed by GitHub
parent
commit
e25737712a
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 17
      README.md
  2. 7
      install-box.sh

17
README.md

@ -77,21 +77,22 @@ Ensure that your account is [correctly permissioned to use docker](https://docs.
# Ideally you should run this in $HOME as the docker-compose presets are in home
# This will not overwrite any other files but you should segment this in its
# own account
curl "https://raw.githubusercontent.com/getumbrel/umbrel/v0.1.2/install-box.sh" | sh
curl "https://raw.githubusercontent.com/getumbrel/umbrel/v0.1.3-beta/install-box.sh" | sh
# OR wget (if this works better)
wget -qO- "https://raw.githubusercontent.com/getumbrel/umbrel/v0.1.2/install-box.sh" | sh
wget -qO- "https://raw.githubusercontent.com/getumbrel/umbrel/v0.1.3-beta/install-box.sh" | sh
```
### Step 2. Configure
```bash
# If you want to use testnet, otherwise it will use mainnet by default and be #reckless
export TESTNET=true
# Or if you want to use regtest
export REGTEST=true
# Run this in the $HOME directory
# To run Umbrel on mainnet, run:
./configure-box.sh
# For testnet, run:
TESTNET=1 ./configure-box.sh
# For regtest, run:
REGTEST=1 ./configure-box.sh
```
### Step 3. Run the services

7
install-box.sh

@ -12,7 +12,11 @@
# Pre-requisites: git
echo "Cloning to current working directory from github..."
git clone -b v0.1.2 https://github.com/getumbrel/umbrel.git .
git init
git remote add origin https://github.com/getumbrel/umbrel.git
git fetch --all --tags
git checkout tags/v0.1.3-beta
git reset --hard tags/v0.1.3-beta
echo "Removing stuff we don't need"
rm -fr .git
@ -23,4 +27,3 @@ rm -fr LICENSE
rm -fr install-box.sh
echo "Installing complete"

Loading…
Cancel
Save