Not able to authenticate neo4j browser on gcp

Getting the following error while connecting to neo4j browser:
ServiceUnavailable: WebSocket connection failure. Due to security constraints in your web browser, the reason for the failure is not available to this Neo4j Driver. Please use your browsers development console to determine the root cause of the failure. Common reasons include the database being unavailable, using the wrong connection URL or temporary network problems. If you have enabled encryption, ensure your browser is configured to trust the certificate Neo4j is configured to use. WebSocket readyState is: 3

Image I am using for neo4j in docker is:

neo4j:

image: neo4j:3.4.10
hostname: neo4j
container_name: neo4j
depends_on:
  - zookeeper
  - broker
ports:
  - 7474:7474
  - 7687:7687
environment:
  NEO4J_AUTH: "neo4j/connect"
  NEO4J_dbms_memory_heap_max__size: 8G
  NEO4J_dbms_security_procedures_unrestricted: "apoc., algo."
  NEO4J_kafka_auto_offset_reset: earliest
  NEO4J_kafka_group_id: neo4j
  NEO4J_kafka_zookeeper_connect: zookeeper:2181
  NEO4J_kafka_bootstrap_servers: 'broker:29092'
  NEO4J_dbms_logs_debug_level: DEBUG
  NEO4J_streams_sink_enabled: "true"
volumes:
  - $PWD/data/neo4j/plugins:/plugins
  - $PWD/data/neo4j/data:/data