Add pull_policy: never to netbox services so we never try to pull locally built image from remote registry

Dominic 2024-07-16 14:54:20 +02:00
parent 93bedb5092
commit 5039a5aee5

@ -48,6 +48,7 @@ version: '3.4' # This is NOT the version of NetBox! No need to adjust :)
services: services:
netbox: netbox:
image: netbox:latest-plugins image: netbox:latest-plugins
pull_policy: never
ports: ports:
- 8000:8080 - 8000:8080
build: build:
@ -55,8 +56,10 @@ services:
dockerfile: Dockerfile-Plugins dockerfile: Dockerfile-Plugins
netbox-worker: netbox-worker:
image: netbox:latest-plugins image: netbox:latest-plugins
pull_policy: never
netbox-housekeeping: netbox-housekeeping:
image: netbox:latest-plugins image: netbox:latest-plugins
pull_policy: never
``` ```
## Step 3 - Enable plugins in the configuration ## Step 3 - Enable plugins in the configuration