Question from the Docker compose test

Find the port mapped to the host for the web service in the following docker-compose.yml file:

Easy

Examine the following docker-compose.yml file:

services:
  web:
    image: nginx
    ports:
      - "8080:80"
  db:
    image: postgres
    ports:
      - "5432:5432"

Which port is mapped to the host for the web service?

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