I’m trying to set timeout configuration with .ebextensions/01settimeout.config
<code>option_settings:
- namespace: aws:elasticbeanstalk:command
option_name: Timeout
value: 3000
</code>
<code>option_settings:
- namespace: aws:elasticbeanstalk:command
option_name: Timeout
value: 3000
</code>
option_settings:
- namespace: aws:elasticbeanstalk:command
option_name: Timeout
value: 3000
Even with this configuration I’m still getting timeout error:
<code>[ERROR] An error occurred during execution of command [app-deploy] - [Docker Specific Build Application].
Stop running the command. Error: failed to build docker images:
Command docker compose build failed with error Command timed out after 300 seconds.
level=warning msg="/var/app/staging/docker-compose.yaml: the attribute `version` is obsolete,
it will be ignored, please remove it to avoid potential confusion"
canceled
</code>
<code>[ERROR] An error occurred during execution of command [app-deploy] - [Docker Specific Build Application].
Stop running the command. Error: failed to build docker images:
Command docker compose build failed with error Command timed out after 300 seconds.
level=warning msg="/var/app/staging/docker-compose.yaml: the attribute `version` is obsolete,
it will be ignored, please remove it to avoid potential confusion"
canceled
</code>
[ERROR] An error occurred during execution of command [app-deploy] - [Docker Specific Build Application].
Stop running the command. Error: failed to build docker images:
Command docker compose build failed with error Command timed out after 300 seconds.
level=warning msg="/var/app/staging/docker-compose.yaml: the attribute `version` is obsolete,
it will be ignored, please remove it to avoid potential confusion"
canceled
Am I doing something wrong?