Skip to content

Commit

Permalink
Changed default docker p2p port to 1776
Browse files Browse the repository at this point in the history
  • Loading branch information
abitmore committed Aug 2, 2018
1 parent 716e534 commit 2e89243
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ VOLUME ["/var/lib/bitshares", "/etc/bitshares"]
# rpc service:
EXPOSE 8090
# p2p service:
EXPOSE 2001
EXPOSE 1776

# default exec/config files
ADD docker/default_config.ini /etc/bitshares/config.ini
Expand Down
2 changes: 1 addition & 1 deletion README-docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ The `Dockerfile` performs the following steps:
7. Purge source code off the container
8. Add a local bitshares user and set `$HOME` to `/var/lib/bitshares`
9. Make `/var/lib/bitshares` and `/etc/bitshares` a docker *volume*
10. Expose ports `8090` and `2001`
10. Expose ports `8090` and `1776`
11. Add default config from `docker/default_config.ini` and entry point script
12. Run entry point script by default

Expand Down
2 changes: 1 addition & 1 deletion docker/default_config.ini
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Endpoint for P2P node to listen on
p2p-endpoint = 0.0.0.0:2001
p2p-endpoint = 0.0.0.0:1776

# P2P nodes to connect to on startup (may specify multiple times)
# seed-node =
Expand Down

0 comments on commit 2e89243

Please sign in to comment.