Browse Source

Deterministic install using version control (#20)

https://github.com/getumbrel/umbrel/pull/20
patch-1 v0.1.2
Mayank Chhabra 5 years ago
committed by GitHub
parent
commit
826573ed27
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      README.md
  2. 9
      install-box.sh

4
README.md

@ -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

9
install-box.sh

@ -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

Loading…
Cancel
Save