dataall
dataall copied to clipboard
Region should be configurable in docker-compose.yaml
Is your idea related to a problem? Please describe. The region is currently hardcoded in the docker-compose.yaml like:
entrypoint: /bin/bash -c 'aws configure set region "eu-west-1" &&. ~/.nvm/nvm.sh && uvicorn cdkproxymain:app --host 0.0.0.0 --port 2805 --reload'
This should not be region specific, and should be configurable.
Describe the solution you'd like
docker-compose.yaml should be region configurable instead of having a hardcoded region.
Hi @rbernotas good catch! I am not sure if we can remove that line completely. It is there to ensure that a region is configured in the /.aws/config file, the same way that credentials should be configured in /.aws/credentials. We can do some testing and see if we can remove it.