Version 1.5.0
Noteworthy Changes
Add dir to configuration file #656
This fixed #653 and enables loading of the SOCIAL_AUTH_* settings
Startup scripts typos #632, #633
Thanks to @grawert for fixing some bugs in our startup initialisers
Added ENV variables for INSECURE_SKIP_TLS_VERIFY #630
INSECURE_SKIP_TLS_VERIFY for Redis connection settings is now loaded from ENV variable
Update postgres Docker tag to v14 #594
Our docker-compose file was updated to use PostgreSQL 14.
Note that you will need to take manual action after you upgrade a live PostgreSQL database.
If your database is not too big, a full backup (with PostgreSQL 13, i.e. before the upgrade) and restore (with a clean PostgreSQL 14, i.e. after the upgrade) is probably the easiest to achieve. Our troubleshooting wiki page has instructions on how to backup and restore a Netbox database. Please test the procedure on a test system first!
Note that there is no requirement to update to PostgreSQL 14, you can stick to version 13 just fine. You could do this with a docker-compose.override.yml
like so:
version: '3.4'
services:
postgres:
image: postgres:13-alpine
Publish image to GitHub Container Registry #621
NetBox Docker is now also published to GitHub's Container Registry: docker pull ghcr.io/netbox-community/netbox
Install postgresql-client #620
Added psql to enable use of manage.py dbshell
jq check #607
Add check for jq command to build scripts and print error if it is not found
Compatibility
This version of Netbox Docker is only compatible with Netbox v3.1.x.
For older versions, use a previous release of Netbox Docker.