Question from the Docker compose test

How does the `app` application connect to the `db` database?

Easy

Consider the following docker-compose.yml file:

services:
  app:
    image: my-app:latest
    environment:
      - DB_HOST=db
      - DB_PORT=5432
    ports:
      - "8080:80"
  db:
    image: postgres:latest
    ports:
      - "5432:5432"

How does the app application connect to the db database?

Author: AxelStatus: PublishedQuestion passed 60 times
Edit
0
Community EvaluationsNo one has reviewed this question yet, be the first!