Mayank Chhabra
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with
7 additions and
7 deletions
-
README.md
-
info.json
-
install-box.sh
|
|
@ -78,9 +78,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/v0.1.4-beta/install-box.sh" | sh |
|
|
|
curl "https://raw.githubusercontent.com/getumbrel/umbrel/v0.1.5-beta/install-box.sh" | sh |
|
|
|
# OR wget (if this works better) |
|
|
|
wget -qO- "https://raw.githubusercontent.com/getumbrel/umbrel/v0.1.4-beta/install-box.sh" | sh |
|
|
|
wget -qO- "https://raw.githubusercontent.com/getumbrel/umbrel/v0.1.5-beta/install-box.sh" | sh |
|
|
|
``` |
|
|
|
|
|
|
|
### Step 2. Configure |
|
|
|
|
|
@ -1,6 +1,6 @@ |
|
|
|
{ |
|
|
|
"version": "0.1.4-beta", |
|
|
|
"name": "Umbrel v0.1.4 Beta", |
|
|
|
"requires": ">=0.1.3-beta", |
|
|
|
"version": "0.1.5-beta", |
|
|
|
"name": "Umbrel v0.1.5 Beta", |
|
|
|
"requires": ">=0.1.4-beta", |
|
|
|
"notes": "" |
|
|
|
} |
|
|
@ -26,8 +26,8 @@ echo "Cloning to current working directory from github..." |
|
|
|
git init |
|
|
|
git remote add origin https://github.com/getumbrel/umbrel.git |
|
|
|
git fetch --all --tags |
|
|
|
git checkout tags/v0.1.4-beta |
|
|
|
git reset --hard tags/v0.1.4-beta |
|
|
|
git checkout tags/v0.1.5-beta |
|
|
|
git reset --hard tags/v0.1.5-beta |
|
|
|
|
|
|
|
echo "Removing stuff we don't need" |
|
|
|
rm -fr .git |
|
|
|