-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: Dockerfile 및 Github Actions workflow 추가
- Loading branch information
Showing
3 changed files
with
121 additions
and
1 deletion.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,93 @@ | ||
name: Deploy with Docker | ||
|
||
on: | ||
push: | ||
branches: [ main, build/* ] | ||
|
||
env: | ||
DOCKER_IMAGE: ghcr.io/${{ github.actor }}/apap.front | ||
VERSION: ${{ github.sha }} | ||
CONTAINER_NAME: apap.front | ||
HEALTHCHECK_URL: http://${{ secrets.REMOTE_IP }} | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
|
||
- name: Setup docker buildx | ||
id: buildx | ||
uses: docker/setup-buildx-action@v1 | ||
|
||
- name: Cache docker layers | ||
uses: actions/cache@v2 | ||
with: | ||
path: /tmp/.buildx-cache | ||
key: ${{ runner.os }}-buildx-${{ env.VERSION }} | ||
restore-keys: | | ||
${{ runner.os }}-buildx- | ||
- name: Login to ghcr | ||
uses: docker/login-action@v1 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GHCR_TOKEN }} | ||
|
||
- name: Build and push | ||
id: docker_build | ||
uses: docker/build-push-action@v2 | ||
with: | ||
builder: ${{ steps.buildx.outputs.name }} | ||
push: true | ||
tags: ${{ env.DOCKER_IMAGE }}:latest | ||
|
||
deploy: | ||
needs: build | ||
name: Deploy | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Docker Login | ||
uses: appleboy/ssh-action@master | ||
env: | ||
GHCR_TOKEN: ${{ secrets.GHCR_TOKEN }} | ||
with: | ||
host: ${{ secrets.REMOTE_IP }} | ||
username: ${{ secrets.REMOTE_USER }} | ||
key: ${{ secrets.REMOTE_PRIVATE_KEY }} | ||
port: ${{ secrets.REMOTE_SSH_PORT }} | ||
script: | | ||
whoami | ||
echo ${{ secrets.GHCR_TOKEN }} | docker login ghcr.io -u ${{ github.actor }} --password-stdin | ||
- name: Deploy | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.REMOTE_IP }} | ||
username: ${{ secrets.REMOTE_USER }} | ||
key: ${{ secrets.REMOTE_PRIVATE_KEY }} | ||
port: ${{ secrets.REMOTE_SSH_PORT }} | ||
script: | | ||
whoami | ||
docker pull ${{ env.DOCKER_IMAGE }}:latest | ||
- name: Run | ||
uses: appleboy/ssh-action@master | ||
with: | ||
host: ${{ secrets.REMOTE_IP }} | ||
username: ${{ secrets.REMOTE_USER }} | ||
key: ${{ secrets.REMOTE_PRIVATE_KEY }} | ||
port: ${{ secrets.REMOTE_SSH_PORT }} | ||
script: | | ||
whoami | ||
docker stop ${{ env.CONTAINER_NAME }} && docker rm ${{ env.CONTAINER_NAME }} | ||
docker run -d -p 80:80 --name ${{ env.CONTAINER_NAME }} --restart always ${{ env.DOCKER_IMAGE }}:latest | ||
- name: Health Check | ||
uses: jtalk/url-health-check-action@v3 | ||
with: | ||
url: ${{ env.HEALTHCHECK_URL }} | ||
max-attempts: 3 | ||
retry-delay: 5s |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
FROM node:18 as build | ||
|
||
WORKDIR /app | ||
|
||
COPY package.json ./ | ||
RUN npm install | ||
|
||
COPY . ./ | ||
RUN npm run build | ||
|
||
FROM nginx:alpine | ||
|
||
COPY --from=build /app/dist /usr/share/nginx/html | ||
|
||
EXPOSE 80 | ||
|
||
CMD ["nginx", "-g", "daemon off;"] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,12 @@ | ||
# APAP-front | ||
한이음ICT-2024-APAP-front | ||
스마트해상물류 ICT-2024-APAP-front | ||
|
||
### Install | ||
```shell | ||
npm install | ||
``` | ||
|
||
### Run | ||
```shell | ||
npm run dev | ||
``` |