Cannot access Postgres instance running in Docker container from Pgadmin
I am trying to connect to a Postgres instance running in a Docker container. In the docker-compose file, the postgres service looks like this: flask-api-postgres: container_name: flask-api-postgres image: postgres:13.4-alpine env_file: - dev.env ports: - "5433:5433" networks: flask-network: With docker inspect…