Address issue #360 again for netbox-housekeeping image (see wiki rev 4ed440cf)

Jonathon Reinhart 2022-02-12 22:45:15 -05:00
parent b2ca704752
commit cea452f3ff

@ -17,7 +17,7 @@ REMOTE_AUTH_BACKEND = 'netbox.authentication.LDAPBackend'
Among others you can use *docker-compose.override.yml* to inject necessary variables. Among others you can use *docker-compose.override.yml* to inject necessary variables.
Don't forget that the `netbox-worker` service should use the same image. See [this issue](https://github.com/netbox-community/netbox-docker/issues/360). Don't forget that the `netbox-worker` and `netbox-housekeeping` services should use the same image. See [this issue](https://github.com/netbox-community/netbox-docker/issues/360).
### Example override file for Active Directory ### Example override file for Active Directory
@ -38,6 +38,8 @@ services:
LDAP_IGNORE_CERT_ERRORS: "false" LDAP_IGNORE_CERT_ERRORS: "false"
netbox-worker: netbox-worker:
image: *NetboxImage image: *NetboxImage
netbox-housekeeping:
image: *NetboxImage
``` ```
### Example override file for OpenLDAP ### Example override file for OpenLDAP
@ -66,4 +68,6 @@ services:
LDAP_IGNORE_CERT_ERRORS: "false" LDAP_IGNORE_CERT_ERRORS: "false"
netbox-worker: netbox-worker:
image: *NetboxImage image: *NetboxImage
netbox-housekeeping:
image: *NetboxImage
``` ```