From 3ef26a9a524c3bb86e04371cfe1d217293c28286 Mon Sep 17 00:00:00 2001 From: Geert Roks <31696350+GeertRoks@users.noreply.github.com> Date: Fri, 4 Jul 2025 08:45:27 +0200 Subject: [PATCH] Issue 1433: Fix dependency failed to start error The current quickstart instructions result in the following error: `dependency failed to start: container netbox-docker-netbox-1 is unhealthy`. As discussed in [#1433](https://github.com/netbox-community/netbox-docker/issues/1433), this can be solved by increasing the healthcheck start period. --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index d5af47780..47b803171 100644 --- a/README.md +++ b/README.md @@ -44,6 +44,8 @@ services: netbox: ports: - 8000:8080 + healthcheck: + start_period: 300s EOF docker compose pull docker compose up