I have a docker
compose file that sets up an apache
server. The purpose of this is for development on my local network.
All is working great and I can access it on the PC I am running docker
on. If I type localhost:80 I get the sample PHP
index file.
I am now wanting to be able to access this from other machines on my local network. I have been reading the docs and it looks like bridge networking is what I should be looking at.
Am I correct in this assumption?
I am also wanting to add self signed certificates to the Apache server so I can use https
over the local network so want to make sure Bridge networking will allow for that as well.
Can anyone offer some advice?