Skip to content

Commit

Permalink
Add proxy information for PS6
Browse files Browse the repository at this point in the history
Signed-off-by: Nicolas Bock <[email protected]>
  • Loading branch information
nicolasbock committed May 23, 2024
1 parent 0dd158b commit 76579b3
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,17 @@ services:

athena-monitor:
container_name: athena-monitor
image: athena/athena-monitor-linux-amd64:${BRANCH:-main}
image: ghcr.io/canonical/athena-core/athena-monitor:${BRANCH:-main}
volumes:
- ./creds.yaml:/etc/athena/main.yaml
- ./athena-monitor.yaml:/etc/athena/monitor.yaml
- ./athena-monitor-directories.yaml:/etc/athena/monitor-directories.yaml
- ./tmp:/tmp/athena
command: /athena-monitor --config /etc/athena/main.yaml --config /etc/athena/monitor.yaml --config /etc/athena/monitor-directories.yaml --log.level="debug"
environment:
http_proxy: http://proxy.internal:3128
https_proxy: http://proxy.internal:3128
no_proxy: canonical--obiwan.sandbox.my.salesforce.com
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
- db
Expand All @@ -33,12 +37,16 @@ services:

athena-processor:
container_name: athena-processor
image: athena/athena-processor-linux-amd64:${BRANCH:-main}
image: ghcr.io/canonical/athena-core/athena-processor:${BRANCH:-main}
volumes:
- ./creds.yaml:/etc/athena/main.yaml
- ./athena-processor.yaml:/etc/athena/processor.yaml
- ./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
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 76579b3

Please sign in to comment.