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.
12 lines
262 B
12 lines
262 B
5 years ago
|
#!/bin/sh
|
||
|
|
||
|
# Install the docker-compose box to the current working directory
|
||
|
# Pre-requisites: git
|
||
|
|
||
|
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
|