docker-compose.yml 341 B

12345678910111213141516
  1. version: '3'
  2. services:
  3. tfb-database:
  4. build:
  5. dockerfile: postgresql.dockerfile
  6. context: .
  7. environment:
  8. - POSTGRES_PASSWORD=benchmarkdbpass
  9. - POSTGRES_USER=benchmarkdbuser
  10. - POSTGRES_DB=hello_world
  11. web:
  12. build:
  13. dockerfile: postgrest.dockerfile
  14. context: .
  15. ports:
  16. - 3030:3000