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.
This commit is contained in:
Geert Roks 2025-07-04 08:45:27 +02:00
parent 477decd80a
commit 3ef26a9a52

View file

@ -44,6 +44,8 @@ services:
netbox: netbox:
ports: ports:
- 8000:8080 - 8000:8080
healthcheck:
start_period: 300s
EOF EOF
docker compose pull docker compose pull
docker compose up docker compose up