Configuring HTTPS_PROXY for Tableau ingestion in docker-compose file

Original Slack Thread

Hi <@U06TM7M40RK> where in the yml file docker-compose-without-neo4j-m1.quickstart.yml should I provide the HTTPS_PROXY information for the Tableau ingestion if the company uses the proxy server for outgoing connection?

To configure the HTTPS_PROXY for Tableau ingestion in the docker-compose-without-neo4j-m1.quickstart.yml file, you need to add the proxy settings as environment variables in the relevant service section of your Docker Compose file.

Based on the <https://datahubproject.io/docs/0.13.1/authentication/guides/sso/configure-oidc-behind-proxy|OIDC Proxy Configuration guide>, you can set the proxy environment variables in the datahub-frontend-react container or any other relevant container that requires proxy settings. Here is an example of how you can add the HTTPS_PROXY environment variable:

services:
  datahub-frontend-react:
    environment:
      - HTTPS_PROXY=proxy:8080
      - HTTP_PROXY=proxy:8080
      - NO_PROXY=localhost,datahub-gms
    # other configurations...

Make sure to replace proxy:8080 with the actual proxy host and port used by your company. Additionally, if there are specific hosts that should bypass the proxy, you can list them in the NO_PROXY environment variable.

Would you like more detailed instructions on how to configure this, or do you have any specific questions about these steps?

Sources:

Hi :slight_smile: ! Did this interaction resolve your issue or do you still require assistance ?

Please tag @ RunLLM if you still need further assistance !

Or tag @Datahub Community Support if you require a person to take a look :slight_smile:

Hope this helps ! ><