We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dear according to your command in docker hub as below
i dont see any port mapping for 110 and 143 or 995 and 993 .
that is why when it is running it can not be listen in host
docker run --name ispconfig -e MAILMAN_EMAIL_HOST=test.com -e MAILMAN_EMAIL=test@test.com -e MAILMAN_PASS=pass -d -v $(pwd)/mysql:/var/lib/mysql -v $(pwd)/www:/var/www -v $(pwd)/mail:/var/mail -p 20:20 -p 21:21 -p 30000-30009:30000-30009 -p 80:80 -p 443:443 -p 8080:8080 -p 53:53 -p 2222:22 jerob/docker-ispconfig /start.sh
The text was updated successfully, but these errors were encountered:
solution is to map other ports also
docker run --name ispconfig --hostname test.com -e MAILMAN_EMAIL_HOST=test.com -e MAILMAN_EMAIL=info@test.com -e MAILMAN_PASS=pass -d -v $(pwd)/mysql:/var/lib/mysql -v $(pwd)/www:/var/www -v $(pwd)/mail:/var/mail -p 20:20 -p 21:21 -p 30000-30009:30000-30009 -p 808:80 -p 443:443 -p 8080:8080 -p 53:53 -p 2222:22 -p 587:587 -p 143:143 -p 993:993 -p 110:110 -p 995:995 -p 465:465 -p 25:25 jerob/docker-ispconfig /start.sh
Sorry, something went wrong.
No branches or pull requests
Dear
according to your command in docker hub as below
i dont see any port mapping for 110 and 143 or 995 and 993 .
that is why when it is running it can not be listen in host
docker run --name ispconfig
-e MAILMAN_EMAIL_HOST=test.com
-e MAILMAN_EMAIL=test@test.com
-e MAILMAN_PASS=pass
-d
-v $(pwd)/mysql:/var/lib/mysql
-v $(pwd)/www:/var/www
-v $(pwd)/mail:/var/mail
-p 20:20
-p 21:21
-p 30000-30009:30000-30009
-p 80:80
-p 443:443
-p 8080:8080
-p 53:53
-p 2222:22
jerob/docker-ispconfig /start.sh
The text was updated successfully, but these errors were encountered: