Questo sembra essere l'unico modo per impostare ENV con valori dinamici in beanstalk. Ho trovato una soluzione alternativa che funziona per la mia configurazione multi-docker:
1) Aggiungilo al tuo Dockerfile prima di creare e caricare nel tuo repository ECS:
CMD eval `cat /tmp/envs/env_file$`; <base image CMD goes here>;
2) Nel tuo file Dockerrun.aws.json crea un volume:
{
"name": "env-file",
"host": {
"sourcePath": "/var/app/current/envs"
}
}
3) Montare il volume sul contenitore
{
"sourceVolume": "env-file",
"containerPath": "/tmp/envs",
"readOnly": true
}
4) Nel tuo file .ebextensions / options.config aggiungi un blocco container_commands in questo modo:
container_commands:
01_create_mount:
command: "mkdir -p envs/"
02_create_env_file:
command: { "Fn::Join" : [ "", [ 'echo "', "export ENVIRONMENT_NAME=" , { "Ref", "RESOURCE" }, ';" > envs/env_file;' ] ] }
5) eb deploy e il tuo ENVS dovrebbe essere disponibile nel tuo container docker
Puoi aggiungere più ENV aggiungendo più container_commands come:
02_create_env_file_2:
command: { "Fn::Join" : [ "", [ 'echo "', "export ENVIRONMENT_NAME_2=" , { "Ref", "RESOURCE2" }, ';" >> envs/env_file;' \] \] }
Spero che questo ti aiuti!