-
Notifications
You must be signed in to change notification settings - Fork 654
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
docker-compose ファイルを分割する #4955
Merged
Merged
docker-compose ファイルを分割する #4955
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
11 tasks
設定される優先順位は以下の通りです
以下のようにして ec-cube コンテナを up することで、ec-cube コンテナ内の .env の設定値も利用できます
|
@nanasess |
11 tasks
nanasess
added a commit
to nanasess/doc4.ec-cube.net
that referenced
this pull request
Apr 8, 2021
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
概要(Overview・Refs Issue)
方針(Policy)
-f docker-compose.(mysql|pgsql).yml
を付与する-f docker-compose.dev.yml
を付与するDATABASE_URL
をはじめとする環境変数は docker-compose*.yml に設定するAPP_ENV
は entrypoint 実行時に環境変数より設定される。優先順位は以下の通りenvironment
docker-compose-owaspzap.yml
も上記命名規則に合わせてdocker-compose.owaspzap.yml
に変更既知の問題環境変数は docker-compose ファイルに設定するため、 .env の設定は無視されるdocker-compose.yml でAPP_ENV: ~
とすれば .env の設定が優先されるはずだが、何故かAPP_ENV=dev
になってしまい、 .env との両立ができないbuild した時の設定が引き継がれる模様使用方法
SQLite3 または DB を別途用意する場合
PostgreSQL を使用する場合
docker-compose.pgsql.yml を指定します。
MySQL を使用する場合
docker-compose.mysql.yml を指定します。
ローカル環境をマウントする場合
docker-compose.dev.yml を指定します。
## MySQL を使用する例 docker-compose -f docker-compose.yml -f docker-compose.mysql.yml -f docker-compose.dev.yml up
OWASP ZAP を使用する場合
実装に関する補足(Appendix)
テスト(Test)
TODO(E2Eテストを docker-compose 経由で実施したい)
相談(Discussion)
以下のように index.php を修正すれば、上記既知の問題も解消するが、下位互換性に問題がありそうentrypoint で APP_ENV を設定することで解消済み
マイナーバージョン互換性保持のための制限事項チェックリスト
レビュワー確認項目