We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a104d75 commit f68ff4fCopy full SHA for f68ff4f
.github/workflows/deploy.yml
@@ -32,13 +32,16 @@ jobs:
32
# 3. application.properties 설정
33
echo "${{ secrets.APPLICATION_DB_PROPERTIES }}" > ./src/main/resources/application-db.properties
34
35
- # 4. 빌드
+ # 4. 빌드 권한 확보
36
+ chmod +x ./gradlew
37
+
38
+ # 5. 빌드
39
./gradlew clean build
40
- # 5. 기존 컨테이너 중지 및 삭제
41
+ # 6. 기존 컨테이너 중지 및 삭제
42
docker stop be-server || true
43
docker rm be-server || true
44
- # 6. 도커 이미지 생성 및 실행
45
+ # 7. 도커 이미지 생성 및 실행
46
docker build -t be-server .
47
docker run -d --name be-server -p 8080:8080 be-server
0 commit comments