Mayank Chhabra
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
14 additions and
10 deletions
-
README.md
-
install-box.sh
|
@ -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 |
|
|
# 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 |
|
|
# This will not overwrite any other files but you should segment this in its |
|
|
# own account |
|
|
# 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) |
|
|
# 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 |
|
|
### Step 2. Configure |
|
|
|
|
|
|
|
|
```bash |
|
|
```bash |
|
|
# If you want to use testnet, otherwise it will use mainnet by default and be #reckless |
|
|
# To run Umbrel on mainnet, run: |
|
|
export TESTNET=true |
|
|
|
|
|
# Or if you want to use regtest |
|
|
|
|
|
export REGTEST=true |
|
|
|
|
|
|
|
|
|
|
|
# Run this in the $HOME directory |
|
|
|
|
|
./configure-box.sh |
|
|
./configure-box.sh |
|
|
|
|
|
|
|
|
|
|
|
# For testnet, run: |
|
|
|
|
|
TESTNET=1 ./configure-box.sh |
|
|
|
|
|
|
|
|
|
|
|
# For regtest, run: |
|
|
|
|
|
REGTEST=1 ./configure-box.sh |
|
|
``` |
|
|
``` |
|
|
|
|
|
|
|
|
### Step 3. Run the services |
|
|
### Step 3. Run the services |
|
|
|
@ -12,7 +12,11 @@ |
|
|
# Pre-requisites: git |
|
|
# Pre-requisites: git |
|
|
|
|
|
|
|
|
echo "Cloning to current working directory from github..." |
|
|
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" |
|
|
echo "Removing stuff we don't need" |
|
|
rm -fr .git |
|
|
rm -fr .git |
|
@ -23,4 +27,3 @@ rm -fr LICENSE |
|
|
rm -fr install-box.sh |
|
|
rm -fr install-box.sh |
|
|
|
|
|
|
|
|
echo "Installing complete" |
|
|
echo "Installing complete" |
|
|
|
|
|
|
|
|