Skip to content

Commit

Permalink
Merge pull request #52 from losdevnull/issue-50
Browse files Browse the repository at this point in the history
Enhancements for instructions
  • Loading branch information
joewxboy authored May 21, 2020
2 parents 220ea07 + 42f3351 commit 4ef90bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
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

0 comments on commit 4ef90bd

Please sign in to comment.