Browse Source

Release Umbrel v0.1.5 Beta (#41)

patch-6 v0.1.5-beta
Mayank Chhabra 5 years ago
committed by GitHub
parent
commit
baf632caa1
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      README.md
  2. 6
      info.json
  3. 4
      install-box.sh

4
README.md

@ -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 # 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.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) # 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 ### Step 2. Configure

6
info.json

@ -1,6 +1,6 @@
{ {
"version": "0.1.4-beta", "version": "0.1.5-beta",
"name": "Umbrel v0.1.4 Beta", "name": "Umbrel v0.1.5 Beta",
"requires": ">=0.1.3-beta", "requires": ">=0.1.4-beta",
"notes": "" "notes": ""
} }

4
install-box.sh

@ -26,8 +26,8 @@ echo "Cloning to current working directory from github..."
git init git init
git remote add origin https://github.com/getumbrel/umbrel.git git remote add origin https://github.com/getumbrel/umbrel.git
git fetch --all --tags git fetch --all --tags
git checkout tags/v0.1.4-beta git checkout tags/v0.1.5-beta
git reset --hard tags/v0.1.4-beta git reset --hard tags/v0.1.5-beta
echo "Removing stuff we don't need" echo "Removing stuff we don't need"
rm -fr .git rm -fr .git

Loading…
Cancel
Save