Meraki Explorer (Docker)

guitb
Getting noticed

Meraki Explorer (Docker)

Hello everyone,

 

I'm trying to run the meraki-explorer application, which I'm running in a Docker container.

 

Repository Link: https://developer.cisco.com/codeexchange/github/repo/cyberdevnet/meraki-explorer/

 

I'm not able to access the application remotely from a different computer on my network. I can access it locally on the machine where Docker is running, but not from other devices.

 

I have already checked all firewall rules, I have connectivity to port 81 in the host where the docker is running.

 

Any guidance or suggestions on how to resolve this would be greatly appreciated!

 

1 Reply 1
PhilipDAth
Kind of a big deal
Kind of a big deal

Generally with Docker, you'll need to use the "-p" flag to make an app externally accessible.

docker run -p 8080:80 my-app

 

Also, make sure any host firewall allows the port.

Get notified when there are additional replies to this discussion.