Tobias Genannt

Results 19 comments of Tobias Genannt

> Would perhaps replacing the default value `''` with `None` for the relevant variables work already? Like this: > > ```python > BANNER_TOP = environ.get('BANNER_TOP', None) > BANNER_BOTTOM = environ.get('BANNER_BOTTOM',...

Initializers were extracted to a plugin

You should change the target branch to `develop` for this PR.

Initializers are now in a plugin.

For some reason `postgresql-client` pulls in a bunch of `perl` requirements. Which ware definitely not needed for Netbox. So I'm hesitant to merge this. @cimnine What do you think? If...

Added an explanation to the [wiki](https://github.com/netbox-community/netbox-docker/wiki/Troubleshooting#dbshell-in-netbox-container-doesnt-work).

This would make adding those files into your own fork more complicated. I guess this is a question of what is the more common use case.

As mentioned above `always` is not a good default and this should be set in the `docker-compose.override.yaml` file. The wiki is open to edit so you can start a section...

This happens only on the first start, when the database is not yet initialised. The housekeeping container tries to clean old sessions but the session table doesn't exists yet. I...

@ryanmerolle You can try out these changes: https://github.com/tobiasge/netbox-docker/commit/c8e385b690b664017f46ec0b5ead9422de1b752c I've added health checks and optimised the `depends_on` setting. Now the `housekeeping` and `worker` start after the web service is healthy. Which...