Skip to content
New issue

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

Docker: Use host port 8080 instead of 80 #182

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ Freeciv-web can easily be built and run from Docker using `docker-compose`. Web

3. Connect to docker via host machine using standard browser

http://localhost/
http://localhost:8080/

Enjoy. The overall dockerfile and required changes to scripts needs some further improvements.

Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ services:
volumes:
- "data:/var/lib/tomcat8/webapps/data"
ports:
- "80:80"
- "8080:80"
- "4002"
- "6000-6009:6000-6009"
- "7000-7009:7000-7009"
Expand Down