Skip to content

Commit 7dff11f

Browse files
author
mahesh bisl
committed
Added setup.sh that would guide to setup the host
1 parent 0a30a13 commit 7dff11f

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
"Run setup.sh to set up"
2+
13
# About this Repo
24

35
This is the Git repo of the Docker [official image](https://docs.docker.com/docker-hub/official_repos/) for [postgres](https://registry.hub.docker.com/_/postgres/). See [the Docker Hub page](https://registry.hub.docker.com/_/postgres/) for the full readme on how to use this Docker image and for information regarding contributing and issues.

setup.sh

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
2+
echo Install Docker
3+
echo Enter a key when done
4+
read
5+
6+
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
7+
echo Installing AWS CLI
8+
curl "https://s3.amazonaws.com/aws-cli/awscli-bundle.zip" -o "awscli-bundle.zip"
9+
unzip awscli-bundle.zip
10+
sudo ./awscli-bundle/install -i /usr/local/aws -b /usr/local/bin/aws
11+
12+
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
13+
echo Setting AWS credentials
14+
aws configure
15+
16+
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
17+
echo Install 'make'
18+
echo Enter a key when done
19+
read
20+
21+
echo ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
22+
echo "Make usage"
23+
make

0 commit comments

Comments
 (0)