- バックアップ一覧
- 差分 を表示
- 現在との差分 を表示
- ソース を表示
- Docker/コマンド/docker-compose/コンテナ間で環境変数を共有する へ行く。
- 1 (2019-04-02 (火) 05:50:29)
コンテナ間で環境変数を共有する
version: '3.4' x-common-variables: &common-variables VARIABLE: some_value ANOTHER_VARIABLE: another_value services: some_service: image: someimage environment: *common-variables another_service: image: anotherimage environment: <<: *common-variables NON_COMMON_VARIABLE: 'non_common_value'
参考
https://stackoverflow.com/questions/36283908/re-using-environmental-variables-in-docker-compose-yml