Skip to content

Commit

Permalink
Added cert mount to docker-compose-addons.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
dmccoystephenson committed Sep 17, 2024
1 parent 971c252 commit 566061e
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions docker-compose-addons.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ services:
KAFKA_BIGQUERY_TABLENAME: ${KAFKA_BIGQUERY_TABLENAME}

LOGGING_LEVEL: ${COUNTS_LOGGING_LEVEL}
volumes:
- <certname>.crt:/etc/ssl/ca/ca.crt
logging:
options:
max-size: '10m'
Expand Down Expand Up @@ -86,6 +88,8 @@ services:
PG_DB_PASS: ${PG_DB_PASS}

LOGGING_LEVEL: ${RSU_STATUS_LOGGING_LEVEL}
volumes:
- <certname>.crt:/etc/ssl/ca/ca.crt
logging:
options:
max-size: '10m'
Expand All @@ -97,8 +101,8 @@ services:
dockerfile: Dockerfile.iss_health_check
image: iss_health_check:latest
restart: on-failure:3
depends_on:
- cvmanager_postgres
# depends_on:
# - cvmanager_postgres
environment:
ISS_API_KEY: ${ISS_API_KEY}
ISS_API_KEY_NAME: ${ISS_API_KEY_NAME}
Expand All @@ -119,6 +123,7 @@ services:
ISS_KEY_TABLE_NAME: iss_keys
volumes:
- ${GOOGLE_APPLICATION_CREDENTIALS}:/google/gcp_credentials.json
- <certname>.crt:/etc/ssl/ca/ca.crt
logging:
options:
max-size: '10m'
Expand Down

0 comments on commit 566061e

Please sign in to comment.