Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update compose.yml to quote boolean values for docker-compose v1.29.2 #974

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions container/compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@ services:
KARAPACE_COMPATIBILITY: FULL
KARAPACE_STATSD_HOST: statsd-exporter
KARAPACE_STATSD_PORT: 8125
KARAPACE_KAFKA_SCHEMA_READER_STRICT_MODE: false
KARAPACE_KAFKA_RETRIABLE_ERRORS_SILENCED: true
KARAPACE_KAFKA_SCHEMA_READER_STRICT_MODE: "false"
KARAPACE_KAFKA_RETRIABLE_ERRORS_SILENCED: "true"

karapace-rest:
image: ghcr.io/aiven-open/karapace:develop
Expand All @@ -108,8 +108,8 @@ services:
KARAPACE_LOG_LEVEL: WARNING
KARAPACE_STATSD_HOST: statsd-exporter
KARAPACE_STATSD_PORT: 8125
KARAPACE_KAFKA_SCHEMA_READER_STRICT_MODE: false
KARAPACE_KAFKA_RETRIABLE_ERRORS_SILENCED: true
KARAPACE_KAFKA_SCHEMA_READER_STRICT_MODE: "false"
KARAPACE_KAFKA_RETRIABLE_ERRORS_SILENCED: "true"

prometheus:
image: prom/prometheus
Expand Down
Loading