u/Ecstatic_Orange66

▲ 6 r/meraki

Cisco Spaces - Anyone using it?

I am testing Cisco Spaces with our Meraki Deployment.

I work for retail and they are looking for customer counts on the sales floor. Im looking at Open Roaming with the carrier offload to get people on the guest Wifi to get that. So if you are using it I have some questions.

Just also was looking to see if anyone else is using it.

reddit.com
u/Ecstatic_Orange66 — 3 days ago
▲ 5 r/Netbox

newbie question - pull specific image

I finally got my good instructions on how to install netbox docker. I then wanted to install Diode plugin. I got that done and found that the netbox docker pulled v4.6. And the diode plugin only wokss on v4.5 as of now.

How do I pull the v4.5 version?

When I go to pull down the image, I:

  1. clone the NetBox Docker Repository "git clone -b release https://github.com/netbox-community/netbox-docker.git"
  2. Create and update the "docker-compose.override.yml" file to set the port

​

"tee docker-compose.override.yml <<EOF services: netbox: ports: - 8000:8080 EOF"

How do I change it to only pull the v4.5 netbox-docker? Like this...?

tee docker-compose.override.yml <<EOF
services:
  netbox:
    image: netboxcommunity/netbox:v4.5
    ports:
      - 8000:8080
EOF

And when I go to get the Diode plug in I need to specify v4.5 in the steps so It doesn't pull v4.6

#Run the following command to create or amend Dockerfile-Plugins:
sudo nano Dockerfile-Plugins

#Input the following, Use the specific version of NetBox you want to maintain:
FROM netboxcommunity/netbox:v4.5" 
reddit.com
u/Ecstatic_Orange66 — 10 days ago