무중단 배포 작업 과정3 #882
Replies: 4 comments 3 replies
-
docker-compose 파일을 지금 dev 와 prod 가 공유를 하고 있는데, dev도 무중단 버전 docker-compose 파일을 쓸 필요가 있을까?
결정일단 dev도 같은 무중단 버전 docker-compose 파일을 쓰자! 이유현재는 |
Beta Was this translation helpful? Give feedback.
-
동시에 켜질 때 같은 폴더를 볼륨으로 마운트하면 우리가 예상하지 못하는 일이 발생하지는 않나요? - 11.
|
Beta Was this translation helpful? Give feedback.
-
Actuator 의 포트를 어떻게 바꿀 것인가?actuator 의 외부 접근을 방지하기 위한 방법으로, 일반적인 방법들로는, 하지만 각각을 검토해보자면 일반적이진 않지만, 충분히 적용할 수 있을법한 방법들을 생각해봤다. management:
endpoints:
enabled-by-default: false
web:
base-path: /actuator
exposure:
include: health, logfile, metrics, prometheus
server:
port: 5959 # 이 부분을 ${ACTUATOR_PORT}로 바꾸고, docker-compose 의 환경변수로 주입받도록! 여기에서의 port 가 actuator 의 port 이므로, 이를 갈아껴주면 되는 것이다.! 💭 커비와 내가 내린 결론문제를 해결하기 위한 간단한 방법 2가지가 떠올랐는데, 그중 무엇을 선택할지는 만약 전자에 동의한다면, 커비와 나는 백종원과 안성재처럼 의견이 1대1로 갈렸으나, |
Beta Was this translation helpful? Give feedback.
-
동시에 켜질 때 같은 폴더를 볼륨으로 마운트하면 우리가 예상하지 못하는 일이 발생하지는 않나요? - 22.
|
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
10월 20일
어떤 순서로 일을 처리할 것인가?
docker compose & shell acript
github actions
실전
shell script
docker-compose.yml
application.yml
Beta Was this translation helpful? Give feedback.
All reactions