I deploy Django project. and I Use to Django, eb( eb cli ), docker, nginx.
but, An postgresql version error occurs.
How do I fix postgresql version erros of aws elastick beanstalk?
please, help me.
I deploy Django project. and I Use to Django, eb( eb cli ), docker, nginx.
but, An postgresql version error occurs.
How do I fix postgresql version erros of aws elastick beanstalk?
please, help me.
김용연,
Can you try adding a .ebextensions
file in your source code with the following contents:
option_settings:
aws:rds:dbinstance
DBEngineVersion: 9.6.6
and then do an eb deploy
?