From b5a790b0b1c3dea23862b4cb8093acd8644730fa Mon Sep 17 00:00:00 2001 From: Rafael Mundel Date: Wed, 19 Jan 2022 21:06:19 -0400 Subject: [PATCH] Update README.md Fixed docker pull command - invalid reference format: repository name must be lowercase Ficker docker run command - Unable to find image 'netbox-devicetype-import-library:latest' locally --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d072bfe9..7bb4735c 100644 --- a/README.md +++ b/README.md @@ -77,7 +77,7 @@ docker build -t netbox-devicetype-import-library . Alternatively you can pull a pre-built image from Github Container Registry (ghcr.io): ``` -docker pull ghcr.io/minitriga/Netbox-Device-Type-Library-Import +docker pull ghcr.io/minitriga/netbox-device-type-library-import ``` The container supports the following env var as configuration : @@ -91,7 +91,7 @@ The container supports the following env var as configuration : To run : ``` -docker run -e "NETBOX_URL=http://netbox:8080/" -e "NETBOX_TOKEN=98765434567890" netbox-devicetype-import-library +docker run -e "NETBOX_URL=http://netbox:8080/" -e "NETBOX_TOKEN=98765434567890" ghcr.io/minitriga/netbox-device-type-library-import ``` ## 🧑‍💻 Contributing