Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/odennav/docker-card-site
Automate deployment of Card website with Docker.
https://github.com/odennav/docker-card-site
automation bash-script deployment docker dockerfile dockerhub html-css-javascript html5 nginx-image vagrant
Last synced: 2 months ago
JSON representation
Automate deployment of Card website with Docker.
- Host: GitHub
- URL: https://github.com/odennav/docker-card-site
- Owner: odennav
- License: apache-2.0
- Created: 2024-02-16T00:29:24.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-06-25T11:53:47.000Z (6 months ago)
- Last Synced: 2024-10-02T07:02:23.254Z (3 months ago)
- Topics: automation, bash-script, deployment, docker, dockerfile, dockerhub, html-css-javascript, html5, nginx-image, vagrant
- Language: JavaScript
- Homepage: https://www.tooplate.com/view/2109-the-card
- Size: 4.05 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Deploying the Card website with Docker
Deployment automated with bash scripts in Test environment.
******************
![](https://github.com/odennav/nginx-card/blob/master/docs/the-card.jpg)## Getting Started
Install [Terraform](https://developer.hashicorp.com/terraform/install) in your local machine
Install [AWS CLI](https://docs.aws.amazon.com/cli/latest/userguide/getting-started-install.html) in your local machine
```bash
sudo apt install curl unzip
curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
unzip awscliv2.zip
sudo ./aws/install -i /usr/local/aws-cli -b /usr/local/bin
```Confirm the AWS CLI installation
```bash
aws --version
```Clone this repository in your local machine
```bash
cd /
git clone [email protected]:odennav/docker-card-site.git
```Execute these Terraform commands sequentially in your local machine to create the AWS VPC(Virtual Private Cloud) and EC2 instances.
Initializes terraform working directory
```bash
cd docker-card-site/terraform
terraform init
```Validate the syntax of the terraform configuration files
```bash
terraform validate
```Create an execution plan that describes the changes terraform will make to the infrastructure
```bash
terraform plan
```Apply the changes described in execution plan
```bash
terraform apply -auto-approve
```Check AWS console for instances created and running
**SSH Access**
Use `.pem` key from AWS to SSH into the public EC2 instance. IPv4 address of public EC2 instance will be shown in terraform outputs.
```bash
ssh -i private-key/terraform-key.pem ec2-user@
```
Clone this repository to the `docker build` machine provisioned and install git in VM.```bash
sudo apt-get install git
git clone https://github.com/odennav/docker-card-site.git
cd docker-card-site
```Download HTML template from `Tooplate` and extract webfiles to working directory
```bash
cd bash-scripts/
bash get_html.sh
```
Run script to automate deployment of the `Card` website
```bash
cd bash-scripts/
bash nginx_card_deploy.sh
```### Clean Up Deployment(Optional)
Delete docker images and containers used to host the website
```bash
cd bash-scripts/
bash clean_up.sh
```
-----Special thanks to [Tooplate](https://https://www.tooplate.com/) for free HTML templates
-----
Cool Deployment!