Why can't I access to my local docker-compose from Browser?
I've run my docker-compose file trying to dockerize pgadmin for Postgres but my browser cannot connect to pgadmin on url localhost:8080. This is the docker-compose file that I am running version: '3' services: db: container_name: postgres_container image: postgres restart: always…