Skip to content

Commit

Permalink
fixes basic.md docker compose example
Browse files Browse the repository at this point in the history
  • Loading branch information
coltmcnealy-lh committed Aug 7, 2024
1 parent d19fef7 commit 0a88bd4
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions docs/docs/06-operations/10-docker-compose/00-basic.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ services:
KAFKA_KRAFT_CLUSTER_ID: abcdefghijklmnopqrstuv
restart: on-failure
healthcheck:
test: kafka-topics.sh --bootstrap-server kafka:9092 --list > /dev/null 2>&1
test: /opt/kafka/bin/kafka-topics.sh --bootstrap-server kafka:9092 --list > /dev/null 2>&1
interval: 5s
littlehorse:
container_name: lh-server
Expand All @@ -53,11 +53,9 @@ services:
LHC_API_PORT: 2023
LHC_OAUTH_ENABLED: false
restart: on-failure
healthcheck:
test: curl -f localhost:8080
interval: 5s
ports:
- "8080:8080"
depends_on:
littlehorse:
condition: service_healthy
```
## Using the Example
Expand Down

0 comments on commit 0a88bd4

Please sign in to comment.