Container/Docker Compose
도커 컴포즈 및 스택 yml 파일 옵션 정리4 - configs / secrests
2mukee
2021. 11. 6. 16:56
320x100
320x100
configs
: config 파일을 지정하여 컨테이너에 대한 옵션 설정
ㆍ하위옵션
: file (구성 파일 경로)
: external (true로 설정시 이미 작성된 구성임을 알림)
: name (구성의 이름 설정)
configs:
my_first_config:
file: ./config_data
my_second_config:
external:
name: redis_config
secrets
: 암호화 파일 추가
ㆍ하위옵션
: file (비밀 파일 경로)
: external (true로 설정시 이미 작성된 비밀임을 알림)
: name (구성의 이름 설정)
secrets:
my_first_secret:
file: ./secret_data
my_second_secret:
external: true
name: redis_secret
Refference
300x250
728x90