Skip to content

Commit

Permalink
Merge pull request #101 from MJU-InsuranceSystem/feature/monitor
Browse files Browse the repository at this point in the history
Feat : docker 마운팅경로 수정 및 dockerfile yml파일 추가
  • Loading branch information
TaetaetaE01 authored Dec 4, 2024
2 parents edcf1ce + f62c6dc commit 7862d27
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,9 @@ EXPOSE 8080

COPY build/libs/*SNAPSHOT.jar mju-insurance.jar

# prometheus yml copy
COPY prometheus/prometheus.yml app/prometheus.yml



ENTRYPOINT ["java","-jar","/mju-insurance.jar"]
6 changes: 3 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ services:
- "80:8080"
- "9292:9292"
volumes:
- ./logs/all:/app/logs/all # ALL_LOG 파일 경로 마운트
- ./logs/warn:/app/logs/warn # WARN_LOG 파일 경로 마운트
- ./logs/error:/app/logs/error # ERROR_LOG 파일 경로 마운트
- ./logs/all:/logs/all # ALL_LOG 파일 경로 마운트
- ./logs/warn:/logs/warn # WARN_LOG 파일 경로 마운트
- ./logs/error:/logs/error # ERROR_LOG 파일 경로 마운트
networks:
- my_network
environment:
Expand Down

0 comments on commit 7862d27

Please sign in to comment.