Computer scienceBackendFlaskApplication ArchitectureDeploying the application

Production-ready application

Complete the compose

Report a typo

This is a possible final docker-compose file. Complete it so that flask application tests from arguments run.

Fill in the gaps with the relevant elements
:
  pg:
    image:
      :13
    :
      - dev.env
    :
      - "5432:5432"

  flask_app:
    :
      : .
      dockerfile: dockerfiles/Dockerfile
    :
      ["pytest", "/app/tests"]
    env_file:
      - dev.env
    ports:
      - "8011:8010"
    depends_on:
      - 
___

Create a free account to access the full topic