Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ddev の Web コンテナー内に環境変数を設定する必要があります。どうやってやるの?nginx の設定などをオーバーライドする手法を見てきましたが、難しすぎます。
ddev は、各プロジェクトの .ddev フォルダー内に無数の docker-compose.*.yaml ファイルをサポートします。
.ddev/docker-compose.env.yaml環境のオーバーライドを含むファイルを作成するだけです。
.ddev/docker-compose.env.yaml
version: '3.6' services: web: environment: - TYPO3_CONTEXT=Development - SOME_ENV="whatever you want"