We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 708cbfd commit 463d3a2Copy full SHA for 463d3a2
backend/src/main/resources/application.yml
@@ -37,6 +37,16 @@ management:
37
mail:
38
enabled: false
39
40
+# Docker 로그 제한
41
+services:
42
+ api:
43
+ image: sisc-web-back:latest
44
+ logging:
45
+ driver: "json-file"
46
+ options:
47
+ max-size: "10m" # 파일 하나당 10MB로 제한
48
+ max-file: "3" # 최대 3개까지만 보관 (총 30MB 고정)
49
+
50
logging:
51
file:
52
name: /app/logs/application.log
0 commit comments