Skip to content

Commit

Permalink
Merge pull request #152 from nicolasbock/proxy
Browse files Browse the repository at this point in the history
Apply proxy settings from environment
  • Loading branch information
nicolasbock authored May 29, 2024
2 parents 47341c2 + b324f8f commit a9e863d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ services:
- ./athena-monitor-directories.yaml:/etc/athena/monitor-directories.yaml
- ./tmp:/tmp/athena
environment:
http_proxy: http://proxy.internal:3128
https_proxy: http://proxy.internal:3128
no_proxy: canonical--obiwan.sandbox.my.salesforce.com
http_proxy: ${http_proxy}
https_proxy: ${https_proxy}
no_proxy: ${no_proxy}
command: /athena-monitor --config /etc/athena/main.yaml --config /etc/athena/monitor.yaml --config /etc/athena/monitor-directories.yaml --log.level=debug
depends_on:
- nats-streaming
Expand All @@ -44,9 +44,9 @@ services:
- ./athena-processor-upload.yaml:/etc/athena/processor-upload.yaml
- ./tmp:/tmp/athena
environment:
http_proxy: http://proxy.internal:3128
https_proxy: http://proxy.internal:3128
no_proxy: canonical--obiwan.sandbox.my.salesforce.com
http_proxy: ${http_proxy}
https_proxy: ${https_proxy}
no_proxy: ${no_proxy}
command: /athena-processor --config /etc/athena/main.yaml --config /etc/athena/processor.yaml --config /etc/athena/processor-upload.yaml --log.level="debug"
depends_on:
- nats-streaming
Expand Down

0 comments on commit a9e863d

Please sign in to comment.