Skip to content

Commit

Permalink
Merge pull request #119 from Clubber2024/feat/Docker-Deploy
Browse files Browse the repository at this point in the history
Feat : docker deploy
  • Loading branch information
mjKim1229 authored Sep 25, 2024
2 parents 04085e2 + ceb7765 commit 4a7913b
Show file tree
Hide file tree
Showing 3 changed files with 61 additions and 0 deletions.
39 changes: 39 additions & 0 deletions .github/workflows/cd-prod.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
name: Deploy - prod

on:
push:
branches:
- main

jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [16.16.0]

steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}

- name: docker build and push
run: |
docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_PASSWORD }}
docker build -t ${{ secrets.DOCKER_REPO }}/clubber-front .
docker push ${{ secrets.DOCKER_REPO }}/clubber-front
- name: executing remote ssh commands using password
uses: appleboy/ssh-action@master
with:
host: ${{ secrets.SSH_HOST_PROD }}
username: ${{ secrets.SSH_USERNAME }}
key: ${{ secrets.SSH_KEY_PROD }}
script: |
sudo docker rm -f $(docker ps -qa)
sudo docker pull ${{ secrets.DOCKER_REPO }}/clubber-front
docker-compose up -d
docker image prune -f
11 changes: 11 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
FROM node:alpine as builder
WORKDIR /usr/src/app
COPY package.json .
RUN npm install
COPY ./ ./
RUN npm run build

FROM nginx
EXPOSE 3000
COPY ./default.conf /etc/nginx/conf.d/default.conf
COPY --from=builder /usr/src/app/build /usr/share/nginx/html
11 changes: 11 additions & 0 deletions default.conf
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
server {
listen 3000;

location / {

root /usr/share/nginx/html;
index index.html index.htm;
try_files $uri $uri/ /index.html;

}
}

0 comments on commit 4a7913b

Please sign in to comment.