Skip to content

Commit

Permalink
Merge pull request #54 from 9oormthon-univ/infra/#53
Browse files Browse the repository at this point in the history
infra : docker-compose 관련 추가
  • Loading branch information
SIWON990327 authored Nov 20, 2024
2 parents 3979ffb + e7819c0 commit cd2f09b
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/dev_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,17 @@ jobs:
java-version: 21 # (5).자바 설치
distribution: 'adopt'

- name: Install Docker Compose
run: |
sudo curl -L "https://github.com/docker/compose/releases/download/v2.20.3/docker-compose-$(uname -s)-$(uname -m)" -o /usr/local/bin/docker-compose
sudo chmod +x /usr/local/bin/docker-compose
docker-compose --version
shell: bash

- name: Build Docker DB
run: ./gradlew bootRun
shell: bash

- name: Grant execute permission for gradlew
run: chmod +x ./gradlew
shell: bash # (6).권한 부여
Expand Down

0 comments on commit cd2f09b

Please sign in to comment.