-
Notifications
You must be signed in to change notification settings - Fork 25
Add Docker Compose Quickstart #99
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
Conversation
As a reference for bufstream users.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This needs some love for public consumption - the judgment of this project is based on the UX from a user hitting buf.build/docs, to finding this, and what their expected comprehension is. We need some work on this to make sure that users understand what is going on at every step. cc @jrinehart-buf
healthcheck: | ||
test: ["CMD", "curl", "--silent", "--fail", "--output", "/dev/null", "http://localhost:9000/minio/health/live"] | ||
interval: 2s | ||
retries: 30 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using the defaults for interval
and retries
for these too leads to a 10-20 seconds until docker will take these as ready, so while it increases the LOC we believe it provides a substantially more pleasant user experience.
As a reference for bufstream users.