skip to Main Content

Redis – AWS Elastic Beanstalk failed to install psycopg2 using requirements.txt Git Pip

I am trying to deploy an app using elasticbeanstalk with Python 3.8. I am using the following requirements.txt click==8.0.1 Flask==1.1.2 Flask-SQLAlchemy==2.5.1 greenlet==1.1.0 itsdangerous==2.0.1 Jinja2==3.0.1 MarkupSafe==2.0.1 marshmallow==3.12.1 marshmallow-sqlalchemy==0.25.0 SQLAlchemy==1.4.15 Werkzeug==2.0.1 celery[redis] psycopg2==2.9.3 Flask-JWT-Extended==4.3.1 Flask-RESTful==0.3.9 python-decouple==3.6 When I run the command eb…

VIEW QUESTION

What is the path for application.properties (or similar file) in docker container?

I am dockerizing springboot application(with PostgreSQL). I want to overwrite application.properties in docker container with my own application.properties. My docker-compose.yml file looks like this: version: '2' services: API: image: 'api-docker.jar' ports: - "8080:8080" depends_on: - PostgreSQL environment: - SPRING_DATASOURCE_URL=jdbc:postgresql://PostgreSQL:5432/postgres -…

VIEW QUESTION
Back To Top
Search