-
Notifications
You must be signed in to change notification settings - Fork 2.3k
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
Remove dockerize #219
Labels
Comments
Hi e.g.: ./mvnw spring-boot:build-image |
Yes. Once we removed dockerize we could use the Docker build image support from Spring Boot |
arey
added a commit
to arey/spring-petclinic-microservices
that referenced
this issue
Dec 24, 2023
arey
added a commit
to arey/spring-petclinic-microservices
that referenced
this issue
Dec 24, 2023
…e healthcheck and depends_on to the docker-compose.yml
arey
added a commit
to arey/spring-petclinic-microservices
that referenced
this issue
Dec 24, 2023
@alexandre-touret We're on our way. See #247 |
arey
added a commit
that referenced
this issue
Dec 27, 2023
DavidMolta18
pushed a commit
to Distribuidos2024/spring-petclinic-microservices
that referenced
this issue
Nov 14, 2024
…c#247) * Use Github Actions for CI * spring-petclinic#219 Upgrade to docker-compose v3 * spring-petclinic#219 Remove dockerize from the Dockerfile and add some healthcheck and depends_on to the docker-compose.yml * spring-petclinic#219 Complete Dockerize removal
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This enhancement has been discussed in the PR #215
The
docker-compose.yml
could use theservice_started
and/or theservice_healthy
condition.Like in k8s, the Spring Boot application may have started but is not ready to accept HTTP request.
According to the compose spec, the
service_healthy
looks like better: https://github.com/compose-spec/compose-spec/blob/master/spec.md#healthcheck It requires that we implement healthcheck.I found this sample: https://github.com/wpcfan/spring-boot-tut/blob/master/docker/docker-compose.yml
The text was updated successfully, but these errors were encountered: