-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master'
- Loading branch information
Showing
1 changed file
with
26 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Prerequisites | ||
|
||
Basic understanding of logging in to a systems console, and root access are | ||
both necessariy for installation | ||
|
||
## Docker & Docker-Compose | ||
|
||
The default deployment model uses Docker and Docker Compose to deploy | ||
containers for the project's tools, and so, require the following: | ||
|
||
* Docker >= 1.13.1 | ||
* Docker Compose >= 1.15.0 | ||
|
||
``` | ||
$ sudo apt install docker docker-compose | ||
$ sudo systemctl enable docker | ||
$ sudo systemctl start docker | ||
``` | ||
## Quickstart Repository | ||
|
||
For the quickstart tutorial, you'll need to install a git client, and check out with repository: | ||
|
||
``` | ||
$ sudo apt install git | ||
$ git clone https://github.com/CommunityHoneyNetwork/chn-quickstart.git | ||
``` |