Skip to content

Commit

Permalink
build: CD yml 파일 구성 #28 (#53)
Browse files Browse the repository at this point in the history
* feat: CI/CD 설정

* feat: CI/CD 검증용 트리거 설정

* fix: CI/CD workflow 수정

* fix: CI/CD workflow 재수정

* fix: CI/CD workflow 절대 경로 수정

* chore: DDL 생성 전략 변경

* chore: dev 환경 DDL 생성 전략 변경

* refactor: 검증용 트리거 제거

* fix: 도커 이미지 기반 컨테이너 생성으로 변경
  • Loading branch information
Ho-Tea authored and devhoya97 committed Jul 24, 2024
1 parent b735d14 commit 60171c8
Show file tree
Hide file tree
Showing 3 changed files with 62 additions and 3 deletions.
59 changes: 59 additions & 0 deletions .github/workflows/backend-ci-cd-dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
name: Backend CI/CD dev

on:
push:
branches: [ "develop-be" ]

jobs:
ci:
runs-on: ubuntu-latest

defaults:
run:
shell: bash
working-directory: ./backend

permissions:
contents: read

steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'

- name: Grant execute permission for gradlew
run: chmod +x gradlew

- name: Setup with Gradle
uses: gradle/actions/setup-gradle@417ae3ccd767c252f5661f1ace9f835f9654f2b5 # v3.1.0

- name: Build with Gradle
run: ./gradlew clean build

- name: Login to Docker Hub
uses: docker/[email protected]
with:
username: ${{ secrets.DOCKERHUB_DEPLOY_USERNAME }}
password: ${{ secrets.DOCKERHUB_DEPLOY_TOKEN }}

- name: Docker Image Build
run: |
docker build --platform linux/arm64 -t hotea990/staccato -f Dockerfile .
- name: Docker Hub Push
run: docker push hotea990/staccato

cd:
needs: ci
runs-on: self-hosted
steps:
- name: Pull Docker image
run: |
sudo docker login --username ${{ secrets.DOCKERHUB_DEPLOY_USERNAME }} --password ${{ secrets.DOCKERHUB_DEPLOY_TOKEN }}
sudo docker pull hotea990/staccato
- name: Docker Compose up
run: sudo docker-compose -f /home/ubuntu/staccato/docker-compose.yml up -d
4 changes: 2 additions & 2 deletions backend/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ services:
- springboot-mysql-network
application:
container_name: staccato-backend-app
build: .
image: ${STACCATO_IMAGE}
depends_on:
- database
environment:
- SPRING_DATASOURCE_URL=${SPRING_DATASOURCE_URL}
- SPRING_DATASOURCE_USERNAME=${SPRING_DATASOURCE_USERNAME}
- SPRING_DATASOURCE_PASSWORD=${SPRING_DATASOURCE_PASSWORD}
ports:
- "8080:8080"
- "80:8080"
restart: always
networks:
- springboot-mysql-network
Expand Down
2 changes: 1 addition & 1 deletion backend/src/main/resources/application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ spring:
hibernate:
format_sql: true
hibernate:
ddl-auto: validate
ddl-auto: none
database-platform: org.hibernate.dialect.MySQL8Dialect
defer-datasource-initialization: true

Expand Down

0 comments on commit 60171c8

Please sign in to comment.