mirror of https://github.com/lukechilds/umbrel.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
908 B
29 lines
908 B
#!/bin/sh
|
|
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
|
|
# IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
# OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
# ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
# OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
# Install the docker-compose box to the current working directory
|
|
# Pre-requisites: git
|
|
|
|
echo "Cloning to current working directory from github..."
|
|
git init
|
|
git remote add origin https://github.com/lncm/thebox-compose-system.git
|
|
git fetch
|
|
git reset origin/master
|
|
git checkout -t origin/master
|
|
git reset --hard
|
|
|
|
echo "Removing stuff we don't need"
|
|
rm -fr .git
|
|
rm -fr README.md
|
|
rm -fr LICENSE
|
|
rm -fr install-box.sh
|
|
|
|
echo "Installing complete"
|
|
|
|
|