From 5039a5aee5525e1534a2b7488aaf4fd66a1f23d7 Mon Sep 17 00:00:00 2001 From: Dominic <2497502+Domoninic@users.noreply.github.com> Date: Tue, 16 Jul 2024 14:54:20 +0200 Subject: [PATCH] Add pull_policy: never to netbox services so we never try to pull locally built image from remote registry --- Using-Netbox-Plugins.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Using-Netbox-Plugins.md b/Using-Netbox-Plugins.md index c47a9ee..49c2f75 100644 --- a/Using-Netbox-Plugins.md +++ b/Using-Netbox-Plugins.md @@ -48,6 +48,7 @@ version: '3.4' # This is NOT the version of NetBox! No need to adjust :) services: netbox: image: netbox:latest-plugins + pull_policy: never ports: - 8000:8080 build: @@ -55,8 +56,10 @@ services: dockerfile: Dockerfile-Plugins netbox-worker: image: netbox:latest-plugins + pull_policy: never netbox-housekeeping: image: netbox:latest-plugins + pull_policy: never ``` ## Step 3 - Enable plugins in the configuration