I want to expose my docker container to other machines connected to the same network (if matters, wifi network).
Locally (call it PC1 for example), I expose my apache2 server as 8080:80 using docker - so now when running http://localhost:8080 on PC1, I can view my website because 8080 is assigned to port 80 via apache2 container on the local docker bridge network.
What are the steps to expose 8080 from PC1 to another machine (PC2) on that same home network?