Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Enhancements for instructions #52

Merged
merged 1 commit into from
May 21, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion hub/01-horizon-services-setup.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@ apt-get -y install apache2-utils jq curl make gcc

``` bash
curl -fsSL get.docker.com | sh
apt-get install -y docker-compose
curl -L "https://github.com/docker/compose/releases/download/1.25.5/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
chmod +x /usr/local/bin/docker-compose
```

## Next
Expand Down
2 changes: 1 addition & 1 deletion hub/02-build-and-run-horizon.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ If you are not, you may need to export all previous environment variables from s
### Create and Persist Environment Variables

``` bash
export MY_IP=`ifconfig | egrep 'inet ' | awk '{ print $2 }' | egrep -v '^172.|^10.|^127.' | head -1`
export MY_IP=`ifconfig | egrep 'inet ' | sed 's/addr://' | awk '{ print $2 }' | egrep -v '^172.|^10.|^127.' | head -1`
echo "export MY_IP=${MY_IP}" >> ~/.bashrc
export HZN_ORG_ID=testorg
echo "export HZN_ORG_ID=testorg" >> ~/.bashrc
Expand Down