From 96b42d4271f759ef9402afa314d1c86131f577be Mon Sep 17 00:00:00 2001 From: "Aaron M. Bond" Date: Thu, 23 Dec 2021 13:58:40 -0600 Subject: [PATCH] Image changes don't automatically get inherited by the override yml, and they must specifically be either declared or overridden in the override file. --- Version.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Version.md b/Version.md index b5b92d2..bf3accc 100644 --- a/Version.md +++ b/Version.md @@ -15,10 +15,16 @@ 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 + netbox-housekeeping: + <<: *netbox ``` +Note thtat you need to also override the `netbox-worker` and `netbox-housekeeping` service definitions to match. + Now pull the Docker image: `docker-compose pull netbox` ## Alternative via `VERSION` variable