From 3cfeae07207dea38c7fe46be3790c786e912ee1f Mon Sep 17 00:00:00 2001 From: "Aaron M. Bond" Date: Thu, 23 Dec 2021 14:16:04 -0600 Subject: [PATCH] If you override anything else in netbox, the inheritence will pass to the worker and housekeeping containers (such as open ports). Better to just set the image to match. --- Version.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Version.md b/Version.md index bf3accc..6b132dc 100644 --- a/Version.md +++ b/Version.md @@ -15,12 +15,12 @@ To run a specific version, adjust your `docker-compose.override.yml` file to inc ```yml version: '3.4' services: - netbox: &netbox + netbox: image: netboxcommunity/netbox:1.0.1 netbox-worker: - <<: *netbox + image: netboxcommunity/netbox:1.0.1 netbox-housekeeping: - <<: *netbox + image: netboxcommunity/netbox:1.0.1 ``` Note thtat you need to also override the `netbox-worker` and `netbox-housekeeping` service definitions to match.