Skip to content
Open
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ ENTRYPOINT ["/usr/local/bin/docker-entrypoint.sh"]

# Configure healthcheck
# todo: make sure only the registry availability is checks since devices are not maintained by this instance.
HEALTHCHECK --interval=15m --timeout=2m CMD bco-validate --host ${MQTT_BROKER} > /dev/null || exit 1
HEALTHCHECK --interval=30s --timeout=5s --start-period=60s --retries=3 \
CMD curl -f http://localhost:13781/actuator/health || exit 1

# Set command
## Need to be in array form to not encapsulate command in another shell session because
Expand Down
1 change: 1 addition & 0 deletions module/api/graphql/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ dependencies {

api("org.eclipse.jetty:jetty-server:11.0.14")
api("jakarta.servlet:jakarta.servlet-api:6.0.0")
implementation("org.springframework.boot:spring-boot-starter-actuator:_")



Expand Down
2 changes: 2 additions & 0 deletions versions.properties
Original file line number Diff line number Diff line change
Expand Up @@ -94,6 +94,8 @@ plugin.org.springframework.boot=3.1.2

plugin.io.spring.dependency-management=1.1.2

version.org.springframework.boot..spring-boot-starter-actuator=3.1.2

version.kotlin=2.0.0

version.org.openbase..jul.communication.controller=3.7.2
Expand Down
Loading