MatteoGgl/docker-gophish

Typo in README ?

Opened this issue · 1 comments

vgan commented

Hi There,

Firstly, thanks for this docker image!
I was having trouble getting the landing page to load and it looks like the inside port should be 80 instead of 8083 for landing page?

The following commands worked for me instead:
Quickstart
docker run -ti --name gophish -p 3333:3333 -p 80:80 matteoggl/gophish

To run as a daemon:
docker run -d --name gophish -p 3333:3333 -p 80:80 matteoggl/gophish

whoo commented

Hi,

If I'm right:
XXXX:XXXX means host_port:inside_docker.
80:80 >> means that your localport 127.0.0.1:80 >>> docker:80

With Quickstart 8083:80 > you need to go on http://localhost:8083.

Br