updated docker section deploy #1
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
name: Build and Deploy to Docker Hub | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build-and-push: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check Out Repo | |
uses: actions/checkout@v2 | |
- name: Log in to Docker Hub #here telling that login first to docker hub and push theer the image in docker hub from fithub workflow | |
uses: docker/login-action@v1 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} #here getting the dickerhub user name which is we saved in action and secret inn github | |
password: ${{ secrets.DOCKER_PASSWORD }} #same here | |
- name: Build and Push Docker image | |
uses: docker/build-push-action@v2 | |
with: | |
context: . | |
file: ./docker/Dockerfile.user #which docker that path must be here //like here user docker file | |
push: true | |
tags: metavy/cicd-check:latest # Replace with your Docker Hub username and repository | |
- name: Verify Pushed Image | |
run: docker pull metavy/cicd-check:latest # Replace with your Docker Hub username and repository | |
- name: Deploy to EC2 | |
uses: appleboy/ssh-action@master | |
with: | |
host: ${{ secrets.SSH_HOST }} | |
username: ${{ secrets.SSH_USERNAME }} | |
key: ${{ secrets.SSH_KEY }} | |
script: | | |
sudo docker pull 100xdevs/week-18-class:latest | |
sudo docker stop web-app || true | |
sudo docker rm web-app || true | |
sudo docker run -d --name web-app -p 3005:3000 100xdevs/week-18-class:latest |