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
5 additions and
8 deletions
-
README.md
-
install-box.sh
|
|
@ -77,9 +77,9 @@ 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/master/install-box.sh" | sh |
|
|
|
curl "https://raw.githubusercontent.com/getumbrel/umbrel/v0.1.2/install-box.sh" | sh |
|
|
|
# OR wget (if this works better) |
|
|
|
wget -qO- "https://raw.githubusercontent.com/getumbrel/umbrel/master/install-box.sh" | sh |
|
|
|
wget -qO- "https://raw.githubusercontent.com/getumbrel/umbrel/v0.1.2/install-box.sh" | sh |
|
|
|
``` |
|
|
|
|
|
|
|
### Step 2. Configure |
|
|
|
|
|
@ -12,16 +12,13 @@ |
|
|
|
# Pre-requisites: git |
|
|
|
|
|
|
|
echo "Cloning to current working directory from github..." |
|
|
|
git init |
|
|
|
git remote add origin https://github.com/getumbrel/umbrel.git |
|
|
|
git fetch |
|
|
|
git reset origin/master |
|
|
|
git checkout -t origin/master |
|
|
|
git reset --hard |
|
|
|
git clone -b v0.1.2 https://github.com/getumbrel/umbrel.git . |
|
|
|
|
|
|
|
echo "Removing stuff we don't need" |
|
|
|
rm -fr .git |
|
|
|
rm -fr README.md |
|
|
|
rm -fr NETWORKING.md |
|
|
|
rm -fr CONTRIBUTING.md |
|
|
|
rm -fr LICENSE |
|
|
|
rm -fr install-box.sh |
|
|
|
|
|
|
|