Browse Source

Add more documentation and code to box installation

patch-1
nolim1t 5 years ago
parent
commit
9bd8fed0f8
No known key found for this signature in database GPG Key ID: F6287B82CC84BCBD
  1. 10
      install-box.sh

10
install-box.sh

@ -11,9 +11,19 @@
# Install the docker-compose box to the current working directory # Install the docker-compose box to the current working directory
# Pre-requisites: git # Pre-requisites: git
echo "Cloning to current working directory from github..."
git init git init
git remote add origin https://github.com/lncm/thebox-compose-system.git git remote add origin https://github.com/lncm/thebox-compose-system.git
git fetch git fetch
git reset origin/master git reset origin/master
git checkout -t origin/master git checkout -t origin/master
git reset --hard 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"

Loading…
Cancel
Save