
먼저 글 작성에 앞서 해당 시리즈는 Spring Cloud로 개발하는 마이크로서비스 애플리케이션(MSA) 강의를 참고하여 필요한 내용들을 정리한 것임을 밝힙니다.

ENTRYPOINT ["java", "-jar", "-Dspring.profiles.active=prod","/AuthService.jar"]implementation 'org.springframework.cloud:spring-cloud-config-server'
@EnableConfigServer
spring:
application:
name: config-service
cloud:
config:
server:
git:
uri: $[GIT_ADDR]
default-label: master
ignore-local-ssh-settings: true
username: ${GIT_ID}
password: ${GIT_PW}