mirror of
https://github.com/SChernykh/p2pool.git
synced 2024-12-22 19:39:22 +00:00
Docker: expose port 18083 together with RPC port
This commit is contained in:
parent
8d9b9e505e
commit
8fd45cc977
2 changed files with 2 additions and 1 deletions
|
@ -111,7 +111,7 @@ class MoneroHelpBox(HelpBoxBase):
|
|||
],
|
||||
"Expose RPC Port": [
|
||||
"Expose restricted RPC API port to your network so external services",
|
||||
"(wallets for example) can connect",
|
||||
"(wallets for example) can connect. Port 18083 (ZMQ-pub) will also be exposed.",
|
||||
"Note: You may choose to open this port in your hosts firewall and/or",
|
||||
" router to allow services outside your network to connect",
|
||||
],
|
||||
|
|
|
@ -109,6 +109,7 @@ services:
|
|||
- 18080:18080/tcp
|
||||
{% if expose_rpc_port == True %}
|
||||
- {{ rpc_port }}:18081/tcp
|
||||
- 18083:18083/tcp
|
||||
{% endif %}
|
||||
volumes:
|
||||
- monero:/home/monero/.bitmonero:rw
|
||||
|
|
Loading…
Reference in a new issue