Skip to main content

 

The Celonis documentation does not specify passing the proxy configuration to docker.

 

I don't know if the way to pass it to docker is to add one more line

-e PROXY_ENABLED=true \\ -e PROXY_HOST=<host>, etc.

 

Or how it would be since it depends on how the Docker image has been mounted.

 

Hello - I am asking an internal resource if they can help answer this question for you.
Hi -

Here is an example for a proxy with docker

docker run \\
-e UPLINK_ENABLED=true \\
-e UPLINK_URL=https://{team}.{cluster}.celonis.cloud/uplink/api/public/uplink \\
-e UPLINK_CLIENTID= \\
-e UPLINK_CLIENTSECRET= \\
-e CELONIS_PROXY_CONFIG_PATH=/container/config/path/proxy-config.yml
-p : \\
-v \\
-v /local/config/path/proxy-config.yml:/container/config/path/proxy-config.yml \\
extractor-image
-------
// proxy config yaml
enabled: true
host:
port:
user:
password:
useCredentialsProvider: false

Reply